  @charset "UTF-8";/* `@charset` rule MUST be the first line. */
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
@import url("https://ung.edu/_uploads/css/all/font-definitions.css");
@-ms-viewport{width: device-width}/* Fallback for ~1% that is older browsers */
@-o-viewport{width: device-width}/* Fallback for ~.1% that is older browsers */
@viewport{width: device-width}
/* Imported Fonts List: 
 * - "gotham" (Temp. removed spacing-variants: "gotham-condensed", "gotham-narrow", "gotham-xnarrow". Consider reintroducing after redesign.) 
 * - "sentinel"
 * Supported Weights: 400 ("normal"), 700 ("bold")
 * Support Italics: All fonts in above list.
*/
/**
Main CSS File
*/
/*===========CSS Variables===========*/
:root {
--baseSansFont: "gotham", Arial, sans-serif;
--baseSerifFont: "sentinel", Georgia, serif;
--ung-blue: #002f87;
--ung-gold: #ffc82e;
--dark-blue: #01276E;
--dark-gold: #e3b020;
--lite-blue: #abb9d4;
--teal: #3ab0c8;
--lite-gray: #f5f5f5;
--medium-gray: #eaeaea;
--dark-gray: #e4e4e4;
--body-text: #232323;
--old-blue: #4073c6;
--lite-green: #7c9e14;
}

*{
  border: 0;
  text-underline-offset: 0.05em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
*:before,*:after{ box-sizing:inherit; }

HTML{
  box-sizing: border-box;
  height: 100%;
}

BODY{
  overflow-x: hidden;
  font-family: var(--baseSansFont);
  color: var(--body-text);
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  min-height: 100%;
}

/* #OK - Preload logo for print */
BODY:before{ 
  content:url("https://ung.edu/_uploads/images/2021/template/ung_sigh_blue-gold-620x80.png");
  opacity:0;width:1px;height:1px;margin:-1px;overflow:hidden;position:absolute;z-index:-1;
  /* EN replaced `left:2000px` rule, can cause unexpected scrolling behaviors on some browsers when content is far out of bounds.
   * "Why 1px?" -Over-precuation. While it *should* still preload when set to 0px, some browsers *might not* for elements sized at 0px. */
}

H1,H2,H3,H4,H5,H6 {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
  font-size: 2.5rem;
}

HR{ border-top:2px solid rgba(0, 0, 0, .3); }

A {
  background: transparent;/* EN: "Are resets like these necessary? Seems redundant. Normalize at the top and be done with it." */
  color: var(--ung-blue);
  text-decoration: none;
  transition: color 0.2s;
}

IMG {
  max-width:100%;
  height: auto;
  flex-shrink: 0;
}

LI{
  font-family: var(--baseSansFont);
  font-style: normal;
  font-weight: 400;
}

.row :is(UL,OL) LI{
  margin-bottom: 8px;
  line-height: 1.2;
}

.row :is(UL,OL) :is(UL,OL) LI{
  margin-bottom: 10px;
  line-height: 1.2;
}
.row :is(UL,OL) :is(UL,OL) LI:first-of-type{ margin-top: 6px }
.row :is(UL,OL) :is(UL,OL) LI:last-child{ margin-bottom: 10px }

.row UL LI.panel{/* Should this have the direct-descendant operator?: `.row UL > LI.panel` */
  margin-bottom: 6px;
  line-height: 1.4;
}

.row UL:is(.ul-blue-circle,.ul-teal-circle,.ul-yellow-circle) LI{/* Consider: seperating the class into two subclasses: UL.ul-blue-circle ==> UL.circle.blue*/
  margin-bottom: 8px;
  line-height: 1.2;
}
/* Below is the newer "Nested" CSS style intended for use after 2026. 
 * While most browsers already support this natively, we will exercise "an abundance of caution" 
 * for a little while longer, instead using the similar `:is()` pseudo-selector, 
 * which is slightly older, but still less cumbersome, than OG ~CSS 2016 of
 * typing the full permutation list of fully-qualified selectors.
.row{
  UL,OL{
    LI{
      margin-bottom: 8px;
      line-height: 1.2;
    }
    
    UL,OL{
      LI{
        margin-bottom: 10px;
        line-height: 1.2;
        &:first-of-type{ margin-top: 6px }
        &:last-child{ margin-bottom: 10px }
      }
    }
  }

  UL{
    LI.panel{
      margin-bottom: 6px;
      line-height: 1.4;
    }

    &:is(.ul-blue-circle,.ul-teal-circle,.ul-yellow-circle) LI{
      margin-bottom: 8px;
      line-height: 1.2;
    }

    UL.nav-tabs LI, UL LI.stepper:first-of-type{ margin-top: 0 }
  }
}/* End "Nested" style CSS rules to be used ~2026 */
/* Below is the even older code made by JET c.2019-2021. Keeping this here while we test the new styles.
.row UL LI, 
.row OL LI{
  margin-bottom: 8px;
  line-height: 1.2;
}
.row UL LI.panel {/--- Should probably have the direct-descendant operator: `.row UL > LI.panel` ---/
margin-bottom: 6px;
line-height: 1.4;
}

.row UL.ul-blue-circle LI,
.row UL.ul-teal-circle LI,
.row UL.ul-yellow-circle LI {/--- Should probably make a generic `.ul-circle` class to consolidate this and a sparate color-indicator class for it.  ---/
margin-bottom: 8px;
line-height: 1.2;
}

.row UL UL LI,
.row OL OL LI {
  margin-bottom: 10px;
  line-height: 1.2;
}

.row UL UL LI:first-of-type, .row OL OL LI:first-of-type,
.row UL OL LI:first-of-type, .row OL UL LI:first-of-type {
  margin-top: 6px;
}

.row UL UL.nav-tabs LI {
  margin-top: 0px;
}


.row UL UL LI.stepper:first-of-type {
  margin-top: 0;
}


.row UL UL > LI:last-child, .row OL OL > LI:last-child {
  margin-bottom: 10px;
}
/**/

/* OK - commenting these out - not sure why they were set to none

.accordion-container .wysiwyg  UL.ul-blue-circle LI {
  list-style: none;
} 

.accordion-container .wysiwyg UL.ul-yellow-circle LI {
  list-style: none;
} 

.accordion-container .wysiwyg UL.ul-teal-circle LI {
  list-style: none;
} 

*/

/* EN: "From what I can tell by the recent changes here, 
the actual desired effect is to simply remove the effect; 
hence I commented it out for testing. If all is well, erase this section."

@-webkit-keyframes heroFadeInImg {
  0% {
    opacity: 1.0;
    transform: scale(1.0); /--- OK - was 1.5 for zoom effect ---/
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroFadeInImg {
  0% {
    opacity: 1;
    transform: scale(1.0); /--- OK - was 1.5 for zoom effect ---/
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

*/

/* OK - Links on overlay jumbotron */
.img-story-inner.text-center.overlay-dark-blue-inner A {
    color: var(--teal);
    text-decoration: underline;
}

.img-story-inner.text-center.overlay-dark-blue-inner A:hover {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

DIV#main-content A {
  text-decoration: underline;
}

.lead {
  font-size: 1.1125rem;
  line-height: 23px;
}

/* OK - #onetrust-banner-sdk changes for cookie popup focus-visible state  12/13/21 */

BODY *:focus-visible:not(#onetrust-banner-sdk) {
  outline: 3px solid var(--dark-gold) !important;
}

BODY *:focus { outline: none }

BODY .department-grid .card-header:focus { outline: none }

BODY .department-grid .card-header:focus-visible, BODY .degree-card-wrapper .card-body > A:focus-visible, BODY .ctaLinks-wrap A:focus-visible {
  border: 2px solid var(--dark-gold);
  outline: none !important;
  z-index: 99;
  display: inline-block;
}

/* #OK W.I.L. */

.where-i-lead-title-wrapper .page-title {
  padding-bottom: 1rem;
}

BODY .department-grid .card-header:focus-visible, BODY .where-i-lead-card-wrapper .card-body > A:focus-visible, BODY .ctaLinks-wrap A:focus-visible {
  border: 2px solid var(--dark-gold);
  outline: none !important;
  z-index: 99;
  display: inline-block;
}

BODY .alertlink:focus-visible { outline: 3px solid #ff3a1d !important }

BODY .alertlink:focus { outline: none }

.carousel-control-prev:focus, .carousel-control-next:focus { outline: none }

.carousel-control-prev:focus-visible, .carousel-control-next:focus-visible { outline: 3px solid var(--dark-gold) }

.skip-link {
  color: #000;
  background-color: #fff;
  font-weight: bold;
  left: 0;
  top: 0;
  padding: 0.5rem;
  position: absolute;
  transform: translateY(-100%);
  transition: transform 0.3s;
  z-index: 99999;
  font-size: 14px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
}

.skip-link:focus {
  transform: translateY(0%);
  z-index: 9999999;
}

.home-heading-blue {
  color: var(--ung-blue);
  text-align: center;
  text-transform: capitalize;
  font-size: 32px;
  margin: 10px 0;
  font-family: var(--baseSansFont); /* was: "Gotham Bold" | EN - 2025/10/18 */
  font-weight: bold; /* To turn into the old "Gotham Bold" | EN - 2025/10/18 */
  position: relative; /* To implement the accompanying `z-index` rule, a `position` other than the default `static` must be applied. | EN - 2025/10/18 */
  z-index: 2; /* I noticed their [weird] scrolling shadows, sometimes appear overtop of the headers (When [JET] put them in the wrong order in the HTML), this brings them to the front of the stack (as they should be.) | EN - 2025/10/18  */
}
@media (min-width: 1024px) {
  .home-heading-blue {
    font-size: 100px;
  }
  .home-heading-blue.smaller {
    font-size: 90px;
  }
}

.inner .cards--2-col {
  display: flex;
  flex-direction: column;
  flex-wrap: auto;
}
@media (min-width: 576px) {
  .inner .cards--2-col {
    flex-direction: row;
  }
}
.inner .cards--2-col .card {
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
}
.inner .cards--2-col .card:first-child {
  margin-right: 0px;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .inner .cards--2-col .card:first-child {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

.form-control { border-radius: 0 }

LABEL.select {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
LABEL.select SELECT {
  border: none;
  border-radius: 0;
  background: #fff;
  color: #272727;
  font-size: 16px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 700;
  padding: 6px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
}
LABEL.select::after {
  content: "\F078";
  font-family: "Font Awesome 5 Free";
  color: #000 !important;
  position: absolute;
  font-size: 15px;
  right: 10px;
  top: calc( 25% - 0px);
  z-index: 1;
  width: 20px;
  height: 20px;
  pointer-events: none;
  box-sizing: border-box;
  font-weight: 900;
}

.search-box {
  width: 100%;
  font-size: 14px;
  padding: 7px;
  border: 0;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-style: italic;
}

@media (max-width: 768px) {  .desktop-only{display:none !important} }
@media (min-width: 768px) {   .mobile-only{display:none !important} }
@media (min-width: 768px) {    .desktop-right{float:right}          }

.hide{ display: none !important }
.soft-hide{ display: none }
.border-trans{ border-color: transparent !important }

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .main-navbar{ height: 100% }
  .slick-slide .banner-image{ height:auto !important }
}

.accordion-container UL UL{ list-style: disc } 
.accordion-container UL UL.related-links{ list-style: none } 
.accordion-container UL UL.alpha-lower{ list-style: lower-alpha } 
.accordion-container UL UL.alpha-upper{ list-style: upper-alpha } 
.accordion-container .wysiwyg UL LI UL LI{ list-style: circle } 
.accordion-container .wysiwyg UL LI UL LI UL LI { list-style: square }

/* EN: These styles just make me sad. First, don't use pixels. Second, just use responsive design. */
.size-14{ font-size: 14px !important }
.size-16{ font-size: 16px !important }
.size-18{ font-size: 18px !important }
.size-20{ font-size: 20px !important }
.size-22{ font-size: 22px !important }
.size-24{ font-size: 24px !important }
.size-28{ font-size: 28px !important }
.size-32{ font-size: 32px !important }
.size-36{ font-size: 36px !important }
.size-40{ font-size: 40px !important }
.size-48{ font-size: 48px !important }
.size-56{ font-size: 56px !important }
.size-70{ font-size: 70px !important }
.size-100{font-size: 100px !important}

.max-width-200{ max-width: 200px }
.max-width-300{ max-width: 300px }
.max-width-400{ max-width: 400px }
.max-width-600{ max-width: 600px }
.max-width-800{ max-width: 800px }
.max-width-900{ max-width: 900px }
.max-width-1000{ max-width: 1000px }
.max-width-1200{ max-width: 1200px }

.max-height-200{ max-height: 200px }
.max-height-300{ max-height: 300px }
.max-height-400{ max-height: 400px }
.max-height-600{ max-height: 600px }
.max-height-800{ max-height: 800px }
.max-height-1000{max-height: 1000px}
.max-height-1200{max-height: 1200px}

.min-height-100{ min-height: 100px }
.min-height-200{ min-height: 200px }
.min-height-240{ min-height: 240px }
.min-height-300{ min-height: 300px }
.min-height-400{ min-height: 400px }
.min-height-500{ min-height: 500px }

.height-100{ height: 100px }
.height-200{ height: 200px }
.height-300{ height: 300px }
.height-400{ height: 400px }
.height-500{ height: 500px }

.bg-top-center{ background-position: top center }
.bg-cover{ background-size: cover }

.mb-100{ margin-bottom: 100px !important }
.py-60 { padding: 60px 0 }
.pr-3px{ padding-right: 3px }
.pb-100{ padding-bottom: 100px }
.w-full{ width: 100% }
.m-auto { margin: auto !important }

.mt-40{ margin-top: 40px }
.mt-50{ margin-top: 50px }
.mt-60{ margin-top: 60px }
.mt-75{ margin-top: 75px }

/* EN: What in the world are these for? */
.bg-start-journey {/*background-image: url("/_uploads/images/2021/temp/start-your-journey-bg.jpg");*/}
.bg-volleyball-friends {background-image: url("/_uploads/images/2021/temp/UNG-Nov16-03387.jpg");}

.buorg {
  z-index: 111111;
  border-bottom: 1px solid #A29330;
  text-align: center;
  color: #000;
  background-color: #fff8ea;
  font: 18px Calibri, Helvetica, sans-serif;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-animation: 1s ease-out 0s buorgfly;
          animation: 1s ease-out 0s buorgfly;
}
.buorg-pad {
  padding: 9px;
  line-height: 1.7em;
}
.buorg-buttons {
  display: block;
  text-align: center;
}
#buorgig, #buorgul, #buorgpermanent {
  background: #5ab400;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  padding: 1px 10px;
  font-weight: normal;
  margin: 0 2px;
  display: inline-block;
}
#buorgig {
  background-color: #edbc68;
}
@media only screen and (max-width: 700px) {
  .buorg DIV {
    padding: 5px 12px 5px 9px;
    line-height: 1.3em;
  }
}
@-webkit-keyframes buorgfly {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes buorgfly {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buorg-fadeout {
  transition: visibility 0s 3s, opacity 3s ease-out 0.3s;
}

.buorg-icon {
  width: 22px;
  height: 16px;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
  display: inline-block;
  background: no-repeat 0 center;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0;
  border: 1px solid #000;
}

.error-message {
  color: red;
  font-size: 0.875rem;
}

/*!
 * SlickNav Responsive Mobile Menu v1.0.10
 * (c) 2016 Josh Cope
 * licensed under MIT
 * EN: "Ugh, this wasn't even that slick back in 2016."
 */
.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle; /* EN: "This is negated by the previous `display: block` rule... " */
  float: right;
  padding: 0.438em 0.625em 0.438em 0.625em;
  line-height: 1.125em;
  cursor: pointer;
}

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 0.188em }

/* .slicknav_menu { *zoom: 1 }  EN: "Outdated IE<7 hack is outdated." | EN - 2025/10/18 */

.slicknav_menu .slicknav_menutxt {
  display: block;
  line-height: 1.188em;
  float: left;
}

.slicknav_menu .slicknav_icon {
  float: left;
  width: 1.125em;
  height: 0.875em;
  margin: 0.188em 0 0 0.438em;
}

.slicknav_menu .slicknav_icon:before {
  background: transparent;
  width: 1.125em;
  height: 0.875em;
  display: block;
  content: "";
  position: absolute;
}

.slicknav_menu .slicknav_no-text{ margin: 0 }

.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 1.125em;
  height: 0.125em;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.slicknav_menu:before {
  content: " ";
  display: table;
}

.slicknav_menu:after {
  content: " ";
  display: table;
  clear: both;
}

.slicknav_nav { clear: both }

.slicknav_nav :is(UL,LI,A), .slicknav_nav .slicknav_row{ display: block }

.slicknav_nav .slicknav_arrow {
  font-size: 0.8em;
  margin: 0 0 0 0.4em;
}

.slicknav_nav .slicknav_item{ cursor: pointer }
.slicknav_nav .slicknav_item A, .slicknav_nav .slicknav_parent-link A{ display: inline }
.slicknav_brand { float: left }

.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
  background: #4c4c4c;
  padding: 5px;
}

.slicknav_menu * { box-sizing: border-box }

.slicknav_menu .slicknav_menutxt {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 3px #000;
}

.slicknav_menu .slicknav_icon-bar{ background-color: #fff }

.slicknav_btn {
  margin: 5px 5px 6px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  background-color: #222;
}

.slicknav_nav {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  list-style: none;
  overflow: hidden;
}

.slicknav_nav UL {
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0 20px;
}

.slicknav_nav .slicknav_row {
  padding: 5px 10px;
  margin: 2px 5px;
}

.slicknav_nav .slicknav_row:hover {
  border-radius: 6px;
  background: #ccc;
  color: #fff;
}

.slicknav_nav A{
  padding: 5px 10px;
  margin: 2px 5px;
  text-decoration: none;
  color: #fff;
}

.slicknav_nav .slicknav_txtnode{ margin-left: 15px }

.slicknav_nav :is(.slicknav_item,.slicknav_parent-link) A{ padding: 0; margin: 0; }

.slicknav_brand {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px;
}

@media (min-width: 991px){ 
  .home.scrolling .navbar .slicknav_menu{display:block}
  .home .navbar .slicknav_menu{display: none} 
}

.navbar .slicknav_nav .slicknav_row:hover {
  border-radius: 0;
  background: #fff;
}
.navbar .slicknav_menu {
  display: block;
  padding: 10px 0px 0px;
  background: transparent;
  position: relative;
  right: 0;
  top: 17px;
  /* Closed menu Icon  */
}
@media (max-width: 767.98px) {
  .navbar .slicknav_menu {
    position: absolute;
    right: -15px;
  }
}
@media (max-width: 991px) {
  .navbar .slicknav_menu {
    top: 9px;
  }
}
.navbar .slicknav_menu .slicknav_btn {
  position: relative;
  top: -22px;
}
.navbar .slicknav_menu :is(#main-navigation,#main-navigation2) {
  overflow-y: auto;
  background-color: var(--dark-blue);
  max-height: 100vh;
  position: fixed;
  left: 0;
  right: 0;
  top: 50px;
  z-index: 999999;
  width: 100%;
}
@media (min-width: 1024px) {
  .navbar .slicknav_menu :is(#main-navigation,#main-navigation2) {
    left: unset;
    width: 30vw;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 50px;
  }
}
.navbar .slicknav_menu :is(#main-navigation,#main-navigation2)::before {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  height: 8px;
  margin-bottom: 0;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.navbar .slicknav_menu :is(#main-navigation,#main-navigation2) LI:first-child{ padding-top: 20px }

.navbar .slicknav_menu :is(#main-navigation,#main-navigation2) LI A {
  font-size: 20px;
  font-family: var(--baseSansFont); /* was: Gotham Medium EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  border-bottom: 1px solid var(--ung-blue);
  margin: 0;
  padding-left: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar .slicknav_menu :is(#main-navigation,#main-navigation2) LI A:hover {
  background: transparent;
  color: var(--ung-gold);
}

.navbar .slicknav_menu :is(#main-navigation,#main-navigation2) LI A A {
  padding-left: 0;
  border-bottom: 0;
}

.navbar .slicknav_menu :is(#main-navigation,#main-navigation2) LI LI:first-child{ padding: 0 }

.navbar .slicknav_menu :is(#main-navigation,#main-navigation2) LI LI A {
  font-size: 18px;
  border-bottom: 0;
  font-family: var(--baseSansFont); /* #OK - Screen Smart - Dropdown in Hamburger Menu */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  font-style: normal;
}
.navbar .slicknav_menu :is(#main-navigation,#main-navigation2) .slicknav_arrow{
  float: right;
  padding-right: 20px;
  font-size: 20px;
}
.navbar .slicknav_menu :is(.info-for,.resources) {
  width: 100%;
  margin: 0;
  background: var(--ung-blue);
  max-height: none !important;
}
.navbar .slicknav_menu :is(.info-for,.resources) .slicknav_row {
  border-bottom: 1px solid var(--dark-blue) !important;
  padding: 8px 12px 8px 20px !important;
}

.navbar .slicknav_menu #main-navigation2 LI A.slicknav_item {
  font-family: var(--baseSansFont); /* #OK - Screen Smart */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  font-style: normal;
}

.navbar .slicknav_menu :is(.info-for,.resources) A {
  font-size: 18px !important;
  padding: 8px 0px;
}

.navbar .slicknav_menu :is(.info-for,.resources) LI:first-child{ padding-top: 0 }

.navbar .slicknav_menu :is(.info-for,.resources) LI A {
  margin: 10px 0;
  padding-left: 20px;
  font-size: 18px !important;
}

.navbar .slicknav_menu :is(.info-for,.resources) .dropdown-menu {
  position: relative;
  width: 100%;
  margin: 0;
  float: none;
}
.navbar .slicknav_menu :is(.info-for,.resources) .dropdown-menu A:hover {
  color: var(--ung-gold);
}
.navbar .slicknav_menu :is(.info-for,.resources) .nav-item {
  max-height: none !important;
}
.navbar .slicknav_menu :is(.info-for,.resources) .dropdown-menu {
  background: var(--ung-blue);
}
.navbar .slicknav_menu :is(.info-for,.resources) .dropdown-menu A {
  margin-left: 20px !important;
  padding-left: 40px;
}

.navbar .slicknav_menu :is(.info-for,.resources) .slicknav_arrow{ display: none }

.navbar .slicknav_menu :is(.info-for,.resources) .fa-caret-square-down {
  float: right;
  padding-right: 20px;
  color: var(--ung-gold);
  padding-top: 6px;
}

.navbar .slicknav_menu :is(.info-for,.resources) .dropdown-toggle:after{ display: none }

.navbar .slicknav_menu #logomenu { display: none !important }

.navbar .slicknav_menu .slicknav_open .slicknav_icon SPAN:nth-child(1){ opacity: 0 }

.navbar .slicknav_menu .slicknav_open .slicknav_icon SPAN:nth-child(2) {
  margin-top: 3px;
  transform: rotate(135deg);
}
.navbar .slicknav_menu .slicknav_open .slicknav_icon SPAN:nth-child(3) {
  margin-top: -2px;
  transform: rotate(-135deg);
}
.navbar .slicknav_menu .slicknav_btn {
  background-color: transparent;
  margin: 15px 15px 15px;
}
.navbar .slicknav_menu .slicknav_icon-bar{ width: 28px }
.navbar .slicknav_menu .slicknav_icon{ width: 2.125rem }
.navbar .slicknav_menu .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 5px }

.navbar .slicknav_menu .info-for, .navbar .slicknav_menu .resources {
  display: block;
  visibility: visible;
}

.navbar .slicknav_menu :is(.info-for,.resources) .slicknav_item {
  position: relative;
  z-index: 99;
  display: block;
  padding: 13px 12px 13px 20px !important;
}

.navbar .slicknav_menu :is(.info-for,.resources) .slicknav_item A {
  position: relative;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 0px;
}

.navbar .slicknav_menu .search-component {
  padding: 20px 19px;
  background: var(--ung-blue);
  border-bottom: 1px solid #000000;
  margin-bottom: 140px;
}

.navbar .slicknav_menu FIGCAPTION { color: black }

/* VP set - #OK remove later possibly */
.slick-slide FIGCAPTION { /*padding-bottom: 50px;*/ }

.highlight_hover {
  border: 2px solid transparent;
  transition: border-color 0.3s linear;
  transition: box-shadow 0.3s linear;
}
.highlight_hover:hover {
  border: 2px solid var(--ung-gold);
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.3);
}

FOOTER {
   font-family: var(--baseSansFont); /* #OK - Screen Smart */
   font-style: normal;
   font-weight: 400;
}

FOOTER UL {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
FOOTER .logo {
  text-align: center;
  padding: 40px 0 10px 0;
}
@media (min-width: 768px) {
  FOOTER .logo {
    text-align: left;
    padding: 0;
  }
}
FOOTER .logo IMG {
  max-height: 150px;
}
FOOTER .footer-top {
  background-color: var(--ung-blue);
  color: #fff;
  padding: 20px 0 60px 0;
  text-align: center;
}
@media (min-width: 768px) {
  FOOTER .footer-top {
    padding: 40px 0;
    text-align: left;
  }
}
@media (min-width: 768px) {
  FOOTER .footer-top .container {
    padding: 10px 60px;
  }
}
FOOTER .footer-top A {
  color: #fff;
  text-decoration: none;
}

FOOTER .footer-top .row A:hover, FOOTER .footer-top .row A:focus {
  color: var(--ung-gold);
  text-decoration: underline;
  font-weight: 400;
}

/*========
#OK 3/17/21
Updated Text style from Gotham Bold 18 px to screen smart
=========*/

FOOTER .footer-top .footer-title {
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  text-transform: uppercase;
}

FOOTER .footer-top UL {
  margin-top: -7px;
}
@media (max-width: 768px) {
  FOOTER .footer-top UL {
    margin-top: 40px;
  }
}
FOOTER .footer-top UL LI {
  padding: 4px 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  FOOTER .footer-top UL LI {
    padding: 2px 0;
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  FOOTER .footer-top .col-md-3 {
    flex: 0 0 50%;
    max-width: 100%;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  FOOTER .footer-top .col-md-3 {
    flex: 0 0 20%;
    max-width: 20%;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  FOOTER .footer-top .footer-logo-wrap {
    flex: 0 0 40%;
    max-width: 40%;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  FOOTER .footer-top .col-md-3,
FOOTER .footer-top .col-md-3.footer-logo-wrap {
    flex: 0 0 25%;
    max-width: 25%;
    padding-bottom: 0;
  }
}

FOOTER .footer-bottom A.direct-edit {
 text-decoration: none;
}

FOOTER .footer-bottom {
  background-color: var(--lite-gray);
  color: #000;
}
FOOTER .footer-bottom P {
  line-height: 20px;
  font-size: 14px;
  margin: 20px 0;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  FOOTER .footer-bottom P {
    text-align: left;
    margin: 0;
    padding: 0;
  }
}
FOOTER .footer-bottom A {
  color: #000;
  text-decoration: underline;
}
FOOTER .footer-bottom A:hover, FOOTER .footer-bottom A:focus {
  color: var(--dark-blue);
  text-decoration: none;
}
FOOTER .social {
  display: inline-block;
}
FOOTER .links {
  list-style: none;
  display: block;
  font-size: 16px;
  padding: 0 0 30px 0;
}
@media (min-width: 768px) {
  FOOTER .links {
    padding: 20px 0;
  }
}
FOOTER .links LI {
  display: block;
  text-align: center;
  padding: 10px 0;
}
@media (min-width: 768px) {
  FOOTER .links LI {
    display: inline;
    padding: 0;
  }
  FOOTER .links LI::after {
    content: "\A0\A0\A0\A0|\A0\A0\A0\A0";
  }
  FOOTER .links LI:last-child::after {
    content: "" !important;
  }
}
FOOTER .ga_wrap {
  width: 100%;
  text-align: center;
}
FOOTER .ga_wrap .google_translate {
  padding: 10px;
  max-width: 170px;
  min-height: 62px;
  background: #ececec;
  display: inline-block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  FOOTER .ga_wrap .google_translate {
    float: right;
    min-width: 170px;
    max-width: auto;
  }
}

.footer-bottom A {
  font-size: 14px;
}

.page {
  background: var(--lite-gray);
}

BODY.scrolling #info-for {
  visibility: hidden;
}
@media (min-width: 991px) {
  BODY.scrolling .main-navbar {
    max-height: 50px;
  }
}
BODY.scrolling .logo-container {
  width: 358px;
}
@media (min-width: 1199px) {
  BODY.scrolling .logo-container {
    width: 545px;
  }
}
@media (max-width: 767.98px) {
  BODY.scrolling .logo-container {
    width: auto;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .logo-container {
    position: relative;
    top: -8px;
  }
}
@media (max-width: 991.98px) {
  .logo-container {
    padding-left: 20px;
  }
}

@media (min-width: 1199px) {
  BODY:not(.home) .logo-container {
    width: 545px;
  }
}

BODY:not(.scrolling) #main-navigation, BODY:not(.scrolling) #main-navigation2 {
  top: 83px !important;
}
@media (max-width: 991px) {
  BODY:not(.scrolling) #main-navigation, BODY:not(.scrolling) #main-navigation2 {
    top: 50px !important;
  }
}

.main-navbar .container {
  margin: 0 auto !important;
}

.sub-nav-frontpage UL LI UL {
  display: none;
}

.scrolling .main-navbar {
  border-bottom: 1px solid white;
}

.main-navbar {
  background: var(--ung-blue);
  max-height: 83px;
  padding: 0;
  transition: 0.3s all ease;
  z-index: 99999;
}
@media (max-width: 991px) {
  .main-navbar {
    max-height: 50px;
  }
}
.main-navbar .navbar-brand {
  padding: 16px 0;
}
.main-navbar .navbar-brand IMG {
  max-height: 60px;
  position: relative;
  z-index: 99999;
  left: -5px;
}

/*=========
#OK - Modify logo image container size for military logo - .img.miltary-logo
==========*/
.main-navbar .navbar-brand IMG.military-logo {
  max-height: 60px;
}
@media (max-width: 991px) {
  .main-navbar .navbar-brand IMG {
    max-height: 33px;
  }
}
/*=========
#OK - Modify logo image container size for military logo - .img.miltary-logo
==========*/
@media (max-width: 991px) {
  .main-navbar .navbar-brand IMG.military-logo {
    max-height: 42px;
    bottom: 4px;
  }
}
.main-navbar .dropdown-divider {
  margin: 0.2rem 0;
  border-top: 1px solid #153779;
  height: 1px;
}
@media (max-width: 991.98px) {
  .main-navbar .dropdown-divider {
    border-top-color: var(--dark-blue);
  }
}
.main-navbar .navbar-collapse {
  height: 83px;
}
.main-navbar .navbar-collapse UL {
  height: 100%;
}
.main-navbar .navbar-collapse UL .dropdown-menu {
  border: 0;
  margin: 0;
  background: #001F59;
  border-radius: 0;
  padding: 0 0 10px 0;
  height: auto;
}

/*=========
#OK 3/17/21
Modify Quick Links dropdown "gotham Book w weight 900" to Smart Screen version
=========*/
.main-navbar .navbar-collapse UL .dropdown-menu A {
  padding: 8px;
  margin-right: 10px;
  width: auto;
  text-decoration: none;
  display: table;
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 700; /* was: 900 | EN - 2025/10/18 */
  font-style: normal;
  line-height: 20px;
  position: relative;
}

/* OK - visible text on focus - 11/23/21 */

.main-navbar .navbar-collapse UL .dropdown-menu A:focus {
   color: var(--ung-blue);
   background-color: #f8f9fa;
}

.main-navbar .navbar-collapse UL .dropdown-menu A:before {
  content: "";
  width: 0px;
  height: 2px;
  position: absolute;
  bottom: 5px;
  left: 15px;
  opacity: 0;
  background: var(--ung-gold);
  transition: all 0.3s;
}
.main-navbar .navbar-collapse UL .dropdown-menu A:hover:before {
  opacity: 1;
  width: 86%;
  left: 15px;
  background: var(--ung-gold);
}
.main-navbar .navbar-collapse UL .dropdown-menu LI {
  background: #001F59;
}

.main-navbar .navbar-collapse A {
  height: 100%;
  color: #fff;
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */ /* VP had 900 | OK 2023/09/19 */
  font-style: normal;
  padding: 30px 5px;
  padding-left: 15px !important;
}
.main-navbar .navbar-collapse A:hover {
  background: #001F59;
}
.main-navbar .navbar-collapse A::after {
  border: 0;
}
.main-navbar .navbar-collapse A I {
  color: var(--ung-gold);
  margin-left: 8px;
  font-size: 17px;
}
.main-navbar .navbar-collapse A[aria-expanded=true] {
  background: #001F59;
}
.main-navbar .navbar-collapse .hamburger-menu-btn {
  padding: 15px 15px;
}
.main-navbar .navbar-collapse .hamburger-menu-btn .hamburger-inner,
.main-navbar .navbar-collapse .hamburger-menu-btn .hamburger-inner::after,
.main-navbar .navbar-collapse .hamburger-menu-btn .hamburger-inner::before {
  background-color: white;
  width: 30px;
  height: 2px;
  border-radius: 0px;
}
.main-navbar .navbar-collapse .hamburger-menu-btn .hamburger-inner::before {
  top: 8px;
}
.main-navbar .navbar-collapse .hamburger-menu-btn .hamburger-inner::after {
  top: 16px;
}
.main-navbar .navbar-collapse .hamburger-menu-btn .is-active .hamburger-inner::after {
  top: 19px;
}
.main-navbar .navbar-collapse .hamburger-menu-btn .hamburger {
  width: 60px;
  height: 50px;
}
.main-navbar .input-group-text {
  border: 0;
  border-radius: 0;
  background: var(--teal);
}
.main-navbar .input-group-text I {
  color: var(--ung-blue);
  font-size: 19px;
}
.main-navbar .form-control {
  border-radius: 0;
  border: 0;
  font-size: 14px;
  color: #fff;
  font-style: italic;
  background: var(--dark-blue) !important;
  border-top: 1px solid #034ACF;
  border-left: 1px solid #034ACF;
  border-bottom: 1px solid #034ACF;
}
.main-navbar .form-control:focus, .main-navbar .form-control:hover {
  background: var(--dark-blue);
}
.main-navbar .form-control::-moz-placeholder, .main-navbar .form-control:-ms-input-placeholder, .main-navbar .form-control::-ms-input-placeholder, .main-navbar .form-control::placeholder{
  color: #fff;
  font-family: var(--baseSansFont); /* was: Gotham Book Italic | EN - 2025/10/18 */
  font-style: italic; /* Added to accommodate the font update above. | EN - 2025/10/18 */
}
@media (max-width: 768px) {
  .main-navbar .container {
    width: 100% !important;
    margin: 0;
  }
}
.main-navbar .nav-toggle-btn {
  height: 83px;
  width: 50px;
  color: white;
  background: transparent;
  border: 0;
  font-size: 26px;
}
@media (max-width: 768px) {
  .main-navbar .nav-toggle-btn {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/**
* On home page; don't show the hamburger on desktop
*/
BODY.home .hamburger-menu-btn {
  display: none;
}

/**
* Add padding to a typical page
*/
BODY {
  padding-top: 83px;
}
@media (max-width: 991px) {
  BODY {
    padding-top: 50px;
  }
}

/**
* Scrolling changes the size of the navbar
*/
BODY.scrolling {
  padding-top: 50px;
  transition: 0.3s all ease;
}

BODY.scrolling .main-navbar {
  max-height: 50px;
}
BODY.scrolling .main-navbar .navbar-brand IMG {
  max-height: 33px;
}
/*=========
#OK - Modify to make military logo slightly bigger on scroll with IMG.military-logo
==========*/
BODY.scrolling .main-navbar .navbar-brand IMG.military-logo {
  max-height: 42px;
  bottom: 4px;
}
BODY.scrolling .main-navbar .nav-toggle-btn {
  height: 50px;
}
BODY.scrolling .main-navbar .nav-item {
  max-height: 66px;
}
BODY.scrolling .main-navbar .navbar-collapse {
  height: 50px;
}
BODY.scrolling .main-navbar .navbar-collapse A {
  padding: 15px 5px;
}
BODY.scrolling.scrolling-newsbar {
  padding-top: 150px;
}

@media (max-width: 991.98px) {
  .hidecolumn {
    display: none !important;
  }
}

/*
VP/OK - VP fix for breadcrumb - will need tweaking - Clean up later - Modify for new alert bar for mobiel when VP/JET implement - 
*/

.alert-active-1 {
  padding-top: 124px;
}

.alert-active-2 {
  padding-top: 164px;
}

.alert-active-3 {
  padding-top: 204px;
}

@media (max-width: 991.98px) {
  .alert-active-1 {
    padding-top: 90px;
  }
}

@media (max-width: 991.98px) {
  .alert-active-2 {
    padding-top: 130px;
  }
}

@media (max-width: 991.98px) {
  .alert-active-3 {
    padding-top: 270px;
  }
}

/* Directories Padding Modifications */

.staff-directory-page.alert-active-1, .department-directory-page.alert-active-1 {
  padding-top: 134px;
}

.staff-directory-page.alert-active-2, .department-directory-page.alert-active-2 {
  padding-top: 164px;
}

.staff-directory-page.alert-active-3, .department-directory-page.alert-active-3 {
  padding-top: 204px;
}

@media (max-width: 991.98px) {
  .staff-directory-page.alert-active-1, .department-directory-page.alert-active-1 {
    padding-top: 90px;
  }
}

@media (max-width: 991.98px) {
  .staff-directory-page.alert-active-2, .department-directory-page.alert-active-2  {
    padding-top: 130px;
  }
}

@media (max-width: 991.98px) {
  .staff-directory-page.alert-active-3, .department-directory-page.alert-active-3 {
    padding-top: 270px;
  }
}


/* megamenu-page - padding-top 155px */

.megamenu-page.alert-active-1 {
  padding-top: 200px;
}

.megamenu-page.alert-active-2 {
  padding-top: 240px;
}

.megamenu-page.alert-active-3 {
  padding-top: 280px;
}

@media (max-width: 991.98px) {
  .megamenu-page.alert-active-1  {
    padding-top: 270px;
  }
}

@media (max-width: 991.98px) {
  .megamenu-page.alert-active-2  {
    padding-top: 270px;
  }
}

@media (max-width: 991.98px) {
  .megamenu-page.alert-active-3  {
    padding-top: 170px;
  }
}

.megamenu-page.att-header {
   padding-top: 84px;
}

@media (max-width: 991.98px) {
  .megamenu-page.att-header {
    padding-top: 44px;
  }
}
@media (max-width: 767.98px) {
  .megamenu-page.att-header {
    padding-top: 50px;
  }
}


.megamenu-page.alert-active-1.att-header {
  padding-top: 124px;
}

.megamenu-page.alert-active-2.att-header {
  padding-top: 164px;
}

.megamenu-page.alert-active-3.att-header {
  padding-top: 204px;
}

@media (max-width: 991.98px) {
  .megamenu-page.alert-active-1.att-header  {
    padding-top: 92px;
  }
}

@media (max-width: 991.98px) {
  .megamenu-page.alert-active-2.att-header  {
    padding-top: 132px;
  }
}

@media (max-width: 991.98px) {
  .megamenu-page.alert-active-3.att-header  {
    padding-top: 172px;
  }
}
/**/

.home.alert-active-1 {
  padding-top: 80px;
}

.home.alert-active-2 {
  padding-top: 80px;
}

.home.alert-active-3 {
  padding-top: 80px;
}


@media (max-width: 991.98px) {
  .megamenu-page.alert-active-1 {
    padding-top: 90px;
  }
}

/*OK Adjust paddding for long alert message wrapping to 2nd line >500px -  9/30/21 */
@media (max-width: 502px) {
  .megamenu-page.alert-active-1 {
    padding-top: 116px;
  }
}

/* OK - temporary fix for long alert on home 9/31/21*/
@media (max-width: 991px) {
  .home.alert-active-1 {
    padding-top: 48px;
  }
}

@media (max-width: 991.98px) {
  .megamenu-page.alert-active-2 {
    padding-top: 130px;
  }
}

@media (max-width: 991.98px) {
  .megamenu-page.alert-active-3 {
    padding-top: 170px;
  }
}

/**/

.megamenu-page.alert-active {
  padding-top: 158px;
}
@media (max-width: 991.98px) {
  .megamenu-page.alert-active {
    padding-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .megamenu-page.alert-active {
    padding-top: 50px;
  }
}
.megamenu-page.alert-active.alert-nav {
  padding-top: 123px;
}
@media (max-width: 991.98px) {
  .megamenu-page.alert-active.alert-nav {
    padding-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .megamenu-page.alert-active.alert-nav {
    padding-top: 50px;
  }
}

.megamenu-page {
  padding-top: 155px;
}
@media (max-width: 991.98px) {
  .megamenu-page {
    padding-top: 96px;
  }
}
@media (max-width: 767.98px) {
  .megamenu-page {
    padding-top: 50px;
  }
}

.megamenu-li {
  position: static;
}

.megamenu-container {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 82px;
  z-index: 99998;
  background-color: var(--lite-blue);
  transition: 0.3s all ease;
  border-bottom: 1px solid white;
}
@media (max-width: 991.98px) {
  .megamenu-container {
    top: 50px;
  }
}
.megamenu-container .mm-sec-title {
  padding-left: 48px;
  font-size: 24px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  padding-top: 4px;
  color: var(--dark-blue);
  /*text-transform: capitalize;*/
}
.megamenu-container.transparent-mm {
  background-color: rgba(171, 185, 212, 0.9);
}

.scrolling .megamenu-container {
  top: 50px;
}

#navbar-mm {
  padding-left: 18px;
}
#navbar-mm .dropdown-menu {
  transition: none;
  border: 0;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-top: 15px;
  box-shadow: 0 5px 5px rgba(182, 182, 182, 0.15);
  border-radius: 0;
}
#navbar-mm .mm-title {
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  color: #272727;
  font-size: 18px;
}
#navbar-mm .mm-image-link {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-size: 15px;
  display: block;
}
#navbar-mm .dropdown-item {
  padding-left: 0;
  padding-bottom: 7px;
  white-space: normal;
  line-height: 18px;
}
#navbar-mm .dropdown-item:hover {
  color: #0056b3;
}
#navbar-mm .dropdown-toggle:after {
  font-family: "fontawesome";
  content: "\F078";
  border: 0;
  font-size: 14px;
  font-weight: normal;
  right: -1px;
  vertical-align: 0; /* #OK - Overrides rule in libraries.css - aligns top sub nav item (with lists) with others */
  /*top: 3px; #OK - removed to realign caret with sub nav menu top item text */
  position: relative;
}
#navbar-mm LI {
  padding: 0px 15px 10px 15px;
  z-index: 999;
}

#navbar-mm A {
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  font-style: normal;
  color: var(--dark-blue);
}

#navbar-mm A:hover {
  background-color: transparent;
  text-decoration: underline;
}
#navbar-mm > UL > LI {
  background: none;
  transition: all 0.4s ease-out;
}
#navbar-mm > UL > LI.show {
  background: white;
}
#navbar-mm > UL > LI.hideme {
  display: none;
}
#navbar-mm > UL > LI:hover UL {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: opacity 350ms ease-in-out;
  -moz-transition: opacity 350ms ease-in-out;
  -webkit-transition: opacity 350ms ease-in-out;
  -webkit-box-shadow: none;
  background: #cecece;
  width: 100%;
  position: relative;
  box-shadow: none;
}
#navbar-mm > UL > LI:hover .full-width-wrapper {
  opacity: 1;
  transition: opacity 350ms ease-in-out;
  -moz-transition: opacity 350ms ease-in-out;
  -webkit-transition: opacity 350ms ease-in-out;
}
#navbar-mm .hidden-links {
  list-style: none;
  width: 100%;
  padding-top: 25px;
}
#navbar-mm .hidden-links .dropdown-menu {
  position: relative !important;
  transform: none !important;
}
#navbar-mm .hidden-links LI {
  text-align: right;
}
#navbar-mm .hidden-links > A {
  padding-right: 24px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  color: var(--dark-blue);
  position: relative;
  top: 1px;
}
#navbar-mm .hidden-links > A:after {
  font-family: "fontawesome";
  content: "\F067";
  height: 10px;
  width: 10px;
  border: 0;
  font-size: 14px;
  font-weight: normal;
  right: -5px;
  top: 0;
  position: relative;
}
#navbar-mm UL UL {
  background: white;
  visibility: hidden;
  opacity: 0;
  list-style: none;
  margin: 0;
  padding: 15px 0 0;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 99;
  left: 0;
}
#navbar-mm UL UL A {
  white-space: nowrap;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  color: var(--dark-blue);
}
#navbar-mm UL UL A:hover {
  text-decoration: underline;
  background: transparent;
}
#navbar-mm UL UL .figure-caption {
  white-space: normal;
}
#navbar-mm .dropdown-menu {
  margin: 0;
  transform: none !important;
  top: 100% !important;
}
#navbar-mm .full-width-wrapper {
  width: 100vw;
  left: 0;
  background: #cecece;
  position: absolute;
  top: 100%;
}

.megamenu-page .slicknav_menu #megamenu {
  display: block;
  margin: 0;
  background-color: var(--lite-blue);
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .megamenu-page .slicknav_menu #megamenu {
    display: none;
  }
}
.megamenu-page .slicknav_menu #megamenu .dropdown-item {
  font-size: 18px;
  white-space: normal;
}
.megamenu-page .slicknav_menu #megamenu LI.show A.dropdown-toggle:after {
  font-family: "Font Awesome 5 Free";
  content: "\F0D8";
}
.megamenu-page .slicknav_menu #megamenu LI A.dropdown-toggle {
  color: var(--dark-blue);
  margin: 0 15px !important;
  border-bottom: 1px solid #8c9fc2;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 7px;
}
.megamenu-page .slicknav_menu #megamenu LI A.dropdown-toggle:hover {
  color: black !important;
}
.megamenu-page .slicknav_menu #megamenu LI A.dropdown-toggle:after {
  float: right;
  content: "\F0D7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  position: relative;
  right: 6px;
}
.megamenu-page .slicknav_menu #megamenu .megamenu .mm-title {
  color: black;
  font-size: 18px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}

.megamenu-page .slicknav_menu #megamenu .megamenu A {
  color: var(--dark-blue);
  font-size: 16px;
  border-bottom: 1px solid #8c9fc2;
}
.megamenu-page .slicknav_menu #megamenu .megamenu A:hover {
  color: black;
}
.megamenu-page .slicknav_menu .dropdown-menu {
  background: transparent;
  border-radius: 0;
  position: relative;
  padding: 0 30px;
  border: 0;
}
.megamenu-page .slicknav_menu .container {
  max-width: none;
}
.megamenu-page .slicknav_menu .row {
  display: block;
}
.megamenu-page .slicknav_menu .row .col-sm-6, .megamenu-page .slicknav_menu .row .col-md-3 {
  display: block;
  flex: none;
  max-width: none;
}
.megamenu-page .slicknav_menu .hideme {
  display: none;
}
.megamenu-page .slicknav_menu .nav-item {
  max-height: none !important;
}
.megamenu-page .slicknav_menu .mm-title {
  color: white;
  font-size: 20px;
  margin-top: 10px;
}

.megamenu-container {
  display: block;
}
@media (max-width: 991.98px) {
  .megamenu-container .inner {
    display: none;
  }
}

#navbar-mm .mmtabhover UL {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: opacity 350ms ease-in-out;
  -moz-transition: opacity 350ms ease-in-out;
  -webkit-transition: opacity 350ms ease-in-out;
  -webkit-box-shadow: none;
  background: #cecece;
  width: 100%;
  position: relative;
  box-shadow: none;
}
#navbar-mm .mmtabhover .full-width-wrapper {
  opacity: 1;
  transition: opacity 350ms ease-in-out;
  -moz-transition: opacity 350ms ease-in-out;
  -webkit-transition: opacity 350ms ease-in-out;
}

#navbar-mm {
  display: flex;
  align-items: center;
}

#navbar-mm BUTTON {
  align-self: stretch;
  transition: all 0.4s ease-out;
  padding: 0 18px 10px 1rem;
  outline: 0;
  border: 0;
  font-size: 16px;
  color: var(--dark-blue);
  background: transparent;
  margin-right: 3rem;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  position: relative;
  top: 1px;
}
#navbar-mm BUTTON:hover {
  text-decoration: underline;
}
#navbar-mm BUTTON:after {
  font-family: "fontawesome";
  content: "\F067";
  position: relative;
  left: 4px;
  top: 1px;
  font-size: 15px;
}
#navbar-mm BUTTON.mm-more-active {
  background-color: #cecece;
}

#navbar-mm BUTTON.hidden {
  transition: none;
  border-right: 0.5rem solid #b6b6b6;
  width: 0;
  padding: 0;
  overflow: hidden;
  height: 0;
}

UL#megamenu {
  display: flex;
  flex: 1;
  overflow: hidden;
}

UL#megamenu LI {
  flex: none;
}

UL.hidden-links LI A {
  color: #404040;
  padding-right: 1rem;
}

UL.hidden-links.hidden {
  display: none;
}

UL.hidden-links LI {
  padding: 1rem;
}

.find-your-place {
  padding: 0;
  background: var(--lite-gray);
  text-align: left;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .find-your-place {
    height: auto;
  }
}
@media (min-width: 900px) {
  .find-your-place {
    padding: 40px 0 90px 0;
  }
}
.find-your-place.after_modal_appended {
  position: relative;
}
@media (min-width: 768px) {
  .find-your-place .modal-backdrop {
    background-color: transparent;
  }
}
.find-your-place .container {
  z-index: 2;
  position: relative;
}
.find-your-place .home-heading-blue {
  margin: 40px 0 10px 0;
  position: relative;
  z-index: 22;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
}
@media (min-width: 900px) {
  .find-your-place .home-heading-blue {
    margin-bottom: 40px;
  }
}
.find-your-place .btn-link {
  color: var(--ung-blue);
  text-transform: uppercase;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700; /* Added to accommodate the font update above */
  font-size: 16px;
}
.find-your-place .btn-link I {
  color: var(--teal);
  margin-left: 10px;
}
.find-your-place .text-container P {
  text-align: center;
  margin: 10px 30px;
  padding-left: 10px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}
@media (min-width: 900px) {
  .find-your-place .text-container P {
    margin: 20px 12px;
    text-align: left;
  }
}
.find-your-place .text-container P.help {
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  color: var(--ung-blue);
  font-size: 18px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .find-your-place .text-container P.help {
    margin-bottom: 50px;
  }
}
@media (max-width: 900px) {
  .find-your-place .text-container .preference {
    position: absolute;
    bottom: 30px;
    text-align: center;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
  }
}
@media (min-width: 900px) {
  .find-your-place .text-container .preference {
    height: 7vh;
  }
}
.find-your-place .text-container .preference SPAN {
  color: var(--ung-blue);
  font-size: 24px;
  font-family: var(--baseSerifFont); /* was: "sentinel-Semibold" | EN - 2025/10/18 */
  line-height: 28px;
  margin-bottom: 0;
  display: block;
}
.find-your-place .text-container .preference A {
  padding-left: 0;
  margin-left: 0;
}
@media (min-width: 900px) {
  .find-your-place .text-container P, .find-your-place .text-container P.help, .find-your-place .text-container .preference {
    width: 45%;
    float: right;
    clear: both;
  }
}
.find-your-place .map-object {
  margin-left: -160px;
  width: 210%;
}
@media (min-width: 900px) {
  .find-your-place .map-object {
    position: absolute;
    top: -90px;
    z-index: -1;
    max-width: 86vw;
    float: left;
    display: inline-block;
  }
}
@media (min-width: 1250px) {
  .find-your-place .map-object {
    max-width: 820px;
    left: 1%;
  }
}
.find-your-place .map-svg-el {
  width: 120%;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}
@media (min-width: 375px) {
  .find-your-place .map-svg-el {
    width: auto;
  }
}
.find-your-place .map-svg-el .i {
  fill: var(--teal);
}
.find-your-place .map-svg-el .link {
  stroke: var(--ung-blue) !important;
  text-decoration: none;
  cursor: pointer !important;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
}
.find-your-place .map-svg-el .link:hover {
  font-size: 18px;
  stroke: #000 !important;
  fill: #000;
}
.find-your-place .map-svg-el .link .underlined {
  text-decoration: underline;
}
.find-your-place .map-svg-el .atl-text {
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  fill: #8b8b8b;
}
.find-your-place .modal, .find-your-place .modal-backdrop {
  position: absolute !important;
}
@media (max-width: 768px) {
  .find-your-place .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 20%;
  }
}
.find-your-place .modal-dialog {
  transform: translateX(0) !important;
}
@media (min-width: 768px) {
  .find-your-place .modal-dialog {
    transform: translateX(-20%) !important;
  }
}
@media (min-width: 1115px) {
  .find-your-place .modal-dialog {
    transform: translateX(-50%) !important;
  }
}
.find-your-place .modal-header {
  border: 0;
  height: 0;
  padding: 0;
  margin: 0;
}
.find-your-place .close {
  position: absolute;
  opacity: 1;
  z-index: 999;
  border-radius: 40px;
  padding: 0px 0px 9px 0px;
  color: #fff;
  line-height: 0;
  font-size: 32px;
  margin: 0;
  height: 40px;
  width: 40px;
  top: 8px;
  right: 8px;
  border: 5px solid #808080;
  border: 5px solid rgba(128, 128, 128, 0.5);
  -webkit-background-clip: padding-box;
  /* for Safari */
  background-clip: padding-box;
  /* for IE9+, Firefox 4+, Opera, Chrome */
  background-color: rgba(0, 0, 0, 0.7);
}
@media (min-width: 768px) {
  .find-your-place .close {
    height: 40px;
    width: 40px;
    background: transparent;
    border: none;
    top: 26px;
    right: 26px;
    z-index: 100;
    font-size: 40px;
    color: var(--ung-blue);
  }
}
.find-your-place .modal-content {
  border: 0;
  border-radius: 0;
  box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .find-your-place .modal-content {
    min-width: 700px;
    min-height: 350px;
  }
}
.find-your-place .modal-content .btn {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .find-your-place .modal-content .btn {
    max-width: 140px;
    margin-top: 20px;
  }
}
.find-your-place .modal-body {
  padding: 0;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  font-size: 16px;
}
@media (max-width: 768px) {
  .find-your-place .modal-body {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.find-your-place .modal-title {
  font-size: 28px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  color: var(--ung-blue);
  padding-bottom: 8px;
}
.find-your-place .modal-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .find-your-place .modal-image {
    max-width: 300px;
    min-width: 270px;
  }
}
.find-your-place .modal-image IMG {
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-your-place .modal-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
  padding: 20px;
}
@media (min-width: 768px) {
  .find-your-place .modal-text {
    padding: 40px;
  }
}
.find-your-place .not-scale {
  display: block;
  position: absolute;
  top: -60px;
  left: 30px;
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  color: #000;
}

/* ========= Featured News Section - Home Page =============
#OK - Styling for homepage news section - 1/7/21 
Some !important to override BS library - instead of removing class
=================*/

.container-fluid-news {
    padding:1rem 0 4rem 0;   
}

.container-fluid-news H2 {
    color: #fff;
    text-align: center;
    font-size: 5.625rem;
}

.container-fluid-news .card.no-flex.box-shadow.pb-4.border-trans {
  padding-bottom: 0 !important;
  margin-top: 2rem
}

.container-fluid-news .card.no-flex.box-shadow.pb-4.border-trans DIV.p-3 {
  padding: 8px 16px !important;
}

.container-fluid-news DIV.card.no-flex.box-shadow.pb-4.border-trans:hover,
.container-fluid-news DIV.card.no-flex.box-shadow.pb-4.border-trans:focus-visible {
  outline: 2px solid var(--ung-gold);
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.3);
}

DIV#main-content .container-fluid-news .card A {
  text-decoration: none;
}

DIV#main-content .container-fluid-news .card A:hover,
DIV#main-content .container-fluid-news .card A:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  DIV#main-content .container-fluid-news .card H4 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--baseSansFont) !important;
  }
  
  .container-fluid-news .row {
    display: block;
  }

 .container-fluid-news .fd-card .row .col-md-4 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container-fluid-news .fd-card .row .col-md-4 {
    max-width: 75%;
    margin: auto;
    padding-bottom: 1rem;
  }
}

@media (max-width: 1023px) {
.container-fluid-news H2 {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/*========= End Featured News ==========*/


.get-involved, .staff-directory-page, .department-directory-page {
  background: var(--lite-gray);
  /* padding: 30px 0 0; */
  position: relative;
  overflow: hidden;
}

/* OK - Modal Modifications on home page */
@media (max-width: 767px) {

  .find-your-place .modal-image {
    max-width: 240px;
    min-width: 200px;
    margin: auto;
    display: block;
  }
}

/*==========
#OK - Isolated .tab-container from ^ [ .get-involved, .staff-directory-page, .department-directory-page ]  so could remove background color 
===========*/
.tabs-container {
  padding: 1rem 0 0 0;
  position: relative;
  overflow: hidden;
}

/* OK - spacing for button on multi event feed */
.tab-content P.btn-wrap-center A.btn{
    margin-bottom: 1rem;
}
.get-involved .panel-title A, .staff-directory-page .panel-title A, .department-directory-page .panel-title A, .tabs-container .panel-title A {
  text-decoration: none !important;
}
.get-involved .container, .staff-directory-page .container, .department-directory-page .container, .tabs-container .container {
  z-index: 2;
  position: relative;
  max-width: 1190px;
}
.get-involved .nav-tabs, .staff-directory-page .nav-tabs, .department-directory-page .nav-tabs, .tabs-container .nav-tabs {
  padding-top: 50px;
  padding-left: 30px;
}
.get-involved .nav-tabs .nav-link, .staff-directory-page .nav-tabs .nav-link, .department-directory-page .nav-tabs .nav-link, .tabs-container .nav-tabs .nav-link {
  margin: 0;
  padding: 24px 20px 5px 20px;
  width: 150px;
  height: 100%;
  border: 0;
  color: #272727;
  background-size: cover !important;
  background-position: top !important;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  background: url("/_uploads/images/2021/template/GreyOutlineTab.svg") no-repeat;
  text-decoration: none !important;
}
.get-involved .nav-tabs .nav-link:hover, .staff-directory-page .nav-tabs .nav-link:hover, .department-directory-page .nav-tabs .nav-link:hover, .tabs-container .nav-tabs .nav-link:hover {
  background: url("/_uploads/images/2021/template/GreyTab.svg") no-repeat;
}
@media (max-width: 768px) {
  .get-involved .nav-tabs .nav-link, .staff-directory-page .nav-tabs .nav-link, .department-directory-page .nav-tabs .nav-link, .tabs-container .nav-tabs .nav-link {
    display: none;
  }
}
.get-involved .nav-tabs .nav-link.active, .staff-directory-page .nav-tabs .nav-link.active, .department-directory-page .nav-tabs .nav-link.active, .tabs-container .nav-tabs .nav-link.active {
  background: url("/_uploads/images/2021/template/TealTab.svg") no-repeat;
  color: var(--dark-blue);
}
@media (max-width: 768px) {
  .get-involved .nav-tabs .nav-link.active, .staff-directory-page .nav-tabs .nav-link.active, .department-directory-page .nav-tabs .nav-link.active, .tabs-container .nav-tabs .nav-link.active {
    display: inline-block;
    width: 100%;
    height: 80px;
    text-align: center;
    padding-top: 40px;
  }
}
.get-involved .nav-tabs .nav-link.active:hover, .staff-directory-page .nav-tabs .nav-link.active:hover, .department-directory-page .nav-tabs .nav-link.active:hover, .tabs-container .nav-tabs .nav-link.active:hover {
  background: url("/_uploads/images/2021/template/TealTab.svg") no-repeat;
}
@media (max-width: 768px) {
  .get-involved .nav-tabs .nav-item, .staff-directory-page .nav-tabs .nav-item, .department-directory-page .nav-tabs .nav-item, .tabs-container .nav-tabs .nav-item {
    width: calc(100% - 40px);
  }
}

.get-involved .tab-content, .staff-directory-page .tab-content, .department-directory-page .tab-content {
  background: #fff;
  margin: 0;
  padding: 50px 30px 0px 30px;
  border-top: 5px solid var(--teal);
}
@media (max-width: 1169px) {
  .get-involved .tab-content, .staff-directory-page .tab-content, .department-directory-page .tab-content, .tabs-container .tab-content {
    padding-top: 30px;
  }
}
.get-involved .tab-content .row, .staff-directory-page .tab-content .row, .department-directory-page .tab-content .row, .tabs-container .tab-content .row {
  margin: 0;
  padding: 0;
}
.get-involved .calendar-event, .staff-directory-page .calendar-event, .department-directory-page .calendar-event, .tabs-container .calendar-event {
  margin: 0 0 30px 0;
  padding: 0;
}
.get-involved .calendar-event:nth-child(-n+3), .staff-directory-page .calendar-event:nth-child(-n+3), .department-directory-page .calendar-event:nth-child(-n+3), .tabs-container .calendar-event:nth-child(-n+3) {
  display: none;
}
@media (min-width: 640px) {
  .get-involved .calendar-event:nth-child(-n+3), .staff-directory-page .calendar-event:nth-child(-n+3), .department-directory-page .calendar-event:nth-child(-n+3), .tabs-container .calendar-event:nth-child(-n+3) {
    display: inline-block;
  }
}
.get-involved .calendar-event .hexagon-wrap, .staff-directory-page .calendar-event .hexagon-wrap, .department-directory-page .calendar-event .hexagon-wrap, .tabs-container .calendar-event .hexagon-wrap {
  width: 85px; 
  display: inline-block;
  vertical-align: top;
  padding: 0 0 10px 0; /* #OK - add spacing below hexagon wrap on desktop */
}

.get-involved .calendar-event .hexagon-wrap, .staff-directory-page .calendar-event .hexagon-wrap {
     width: 76px; /* OK modified width from 85 so items would wrap  and added mr for spacing*/
     margin-right: 6px;
}

@media (max-width: 1169px) {
  .get-involved .calendar-event .hexagon-wrap, .staff-directory-page .calendar-event .hexagon-wrap, .department-directory-page .calendar-event .hexagon-wrap, .tabs-container .calendar-event .hexagon-wrap {
    display: block;
    margin: auto;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 47.9375em) and (min-width: 37.5em) {
  .get-involved .calendar-event .hexagon-wrap, .staff-directory-page .calendar-event .hexagon-wrap, .department-directory-page .calendar-event .hexagon-wrap, .tabs-container .calendar-event .hexagon-wrap {
    margin: 0;
  }
}
.get-involved .calendar-event .details, .staff-directory-page .calendar-event .details, .department-directory-page .calendar-event .details, .tabs-container .calendar-event .details {
  width: calc(100% - 90px);
  display: inline-block;
  line-height: 25px;
  min-height: 150px;
}
@media (max-width: 991.98px) {
  .get-involved .calendar-event .details, .staff-directory-page .calendar-event .details, .department-directory-page .calendar-event .details, .tabs-container .calendar-event .details {
    width: 100%;
    padding: 0;
  }
}
.get-involved .calendar-event .details .event-title,
.get-involved .calendar-event .details .location,
.get-involved .calendar-event .details .time, .staff-directory-page .calendar-event .details .event-title,
.staff-directory-page .calendar-event .details .location,
.staff-directory-page .calendar-event .details .time, .department-directory-page .calendar-event .details .event-title,
.department-directory-page .calendar-event .details .location,
.department-directory-page .calendar-event .details .time, .tabs-container .calendar-event .details .event-title,
.tabs-container .calendar-event .details .location,
.tabs-container .calendar-event .details .time {
  margin: 0;
  padding: 0;
}
.get-involved .calendar-event .details .event-title A, .staff-directory-page .calendar-event .details .event-title A, .department-directory-page .calendar-event .details .event-title A, .tabs-container .calendar-event .details .event-title A {
  font-size: 18px;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  line-height: 22px;
  display: inline-block;
}
.get-involved .calendar-event .details .location, .staff-directory-page .calendar-event .details .location, .department-directory-page .calendar-event .details .location, .tabs-container .calendar-event .details .location {
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}
.get-involved .calendar-event .details .time, .staff-directory-page .calendar-event .details .time, .department-directory-page .calendar-event .details .time, .tabs-container .calendar-event .details .time {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 400;
}
.get-involved .calendar-event .hexagon, .staff-directory-page .calendar-event .hexagon, .department-directory-page .calendar-event .hexagon, .tabs-container .calendar-event .hexagon {
  position: relative;
  width: 69px;
  height: 78px;
  background: url("/_uploads/images/2021/template/hexagon.svg") no-repeat;
  margin: 0;
  color: var(--ung-blue);
  background-size: cover;
}
.get-involved .calendar-event .hexagon .date, .staff-directory-page .calendar-event .hexagon .date, .department-directory-page .calendar-event .hexagon .date, .tabs-container .calendar-event .hexagon .date {
  width: 100%;
  line-height: 20px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  padding: 17px 0;
}
.get-involved .calendar-event .hexagon .date SPAN, .staff-directory-page .calendar-event .hexagon .date SPAN, .department-directory-page .calendar-event .hexagon .date SPAN, .tabs-container .calendar-event .hexagon .date SPAN {
  text-align: center;
  display: inline-block;
  width: 100%;
}
.get-involved .calendar-event .hexagon .date .month, .staff-directory-page .calendar-event .hexagon .date .month, .department-directory-page .calendar-event .hexagon .date .month, .tabs-container .calendar-event .hexagon .date .month {
  font-size: 15px;
  font-family: var(--baseSansFont);
  font-weight: 700;
}
.get-involved .calendar-event .hexagon .date .day, .staff-directory-page .calendar-event .hexagon .date .day, .department-directory-page .calendar-event .hexagon .date .day, .tabs-container .calendar-event .hexagon .date .day {
  font-size: 26px;
}
.get-involved .btn-wrap-events, .staff-directory-page .btn-wrap-events, .department-directory-page .btn-wrap-events, .tabs-container .btn-wrap-events {
  margin: 50px 0 40px 0;
}
.get-involved .title-group, .staff-directory-page .title-group, .department-directory-page .title-group, .tabs-container .title-group {
  position: relative;
}
.get-involved .title-group .back-title, .staff-directory-page .title-group .back-title, .department-directory-page .title-group .back-title, .tabs-container .title-group .back-title {
  top: -88%;
}
@media (min-width: 1170px) {
  .get-involved .tab-pane:not(.active), .staff-directory-page .tab-pane:not(.active), .department-directory-page .tab-pane:not(.active), .tabs-container .tab-pane:not(.active) {
    transition: opacity 0.15s linear;
  }
  .get-involved .tab-pane.active, .staff-directory-page .tab-pane.active, .department-directory-page .tab-pane.active, .tabs-container .tab-pane.active {
    opacity: 1;
  }
   .get-involved .panel-heading, .staff-directory-page .panel-heading, .department-directory-page .panel-heading, .tab-pane > .panel > .panel-heading {
    display: none;
  }
  .get-involved .panel, .staff-directory-page .panel, .department-directory-page .panel, .tabs-container .panel {
    border: none;
    box-shadow: none;
  }
  .get-involved .panel-collapse, .staff-directory-page .panel-collapse, .department-directory-page .panel-collapse, .tabs-container .panel-collapse {
    height: auto;
  }
  .get-involved .panel-collapse.collapse, .staff-directory-page .panel-collapse.collapse, .department-directory-page .panel-collapse.collapse, .tabs-container .panel-collapse.collapse {
    display: block;
  }
}
@media (max-width: 1169px) {
  .get-involved .tab-content .tab-pane, .staff-directory-page .tab-content .tab-pane, .department-directory-page .tab-content .tab-pane, .tabs-container .tab-content .tab-pane {
    display: block;
  }
  .get-involved .tab-content .tab-pane .row, .staff-directory-page .tab-content .tab-pane .row, .department-directory-page .tab-content .tab-pane .row  {
    background: var(--dark-gray);
    text-align: center;
    padding: 40px 40px 0;
  }
  
  /* #OK - separated out from above - background added and too much padding) */
    .tabs-container .tab-content .tab-pane .row {
    padding: 1rem 0;
     background: var(--dark-gray);
  }

      .tabs-container .tab-content.blue_bg .tab-pane .row {
    padding: 1rem 0;
     background: var(--ung-blue);
  }
}  

@media (max-width: 1169px) and (max-width: 991.98px) {
  .get-involved .tab-content .tab-pane .row, .staff-directory-page .tab-content .tab-pane .row, .department-directory-page .tab-content .tab-pane .row, .tabs-container .tab-content .tab-pane .row {
    padding: 15px;
  }
}
@media (max-width: 1169px) and (max-width: 767.98px) {
  .get-involved .tab-content .tab-pane .row, .staff-directory-page .tab-content .tab-pane .row, .department-directory-page .tab-content .tab-pane .row, .tabs-container .tab-content .tab-pane .row {
    text-align: left;
  }
}
@media (max-width: 1169px) {
  .get-involved .nav-tabs, .staff-directory-page .nav-tabs, .department-directory-page .nav-tabs, .tabs-container .nav-tabs {
    display: none;
  }
}
@media (max-width: 1169px) {
  .get-involved .panel-title A, .staff-directory-page .panel-title A, .department-directory-page .panel-title A, .tabs-container .panel-title A {
    display: block;
    font-size: 20px;
    color: var(--ung-blue);
    font-weight: 600;
  }
}
@media (max-width: 1169px) {
  .get-involved .panel, .staff-directory-page .panel, .department-directory-page .panel, .tabs-container .panel {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    margin-top: -2px;
    border-bottom: 1px solid #cecece;
  }
}
@media (max-width: 1169px) {
  .get-involved H4.panel-title, .staff-directory-page H4.panel-title, .department-directory-page H4.panel-title, .tabs-container H4.panel-title {
    padding: 10px 0 !important;
    margin: 0;
  }
}
@media (max-width: 1169px) {
  .get-involved .tab-pane:first-child .panel, .staff-directory-page .tab-pane:first-child .panel, .department-directory-page .tab-pane:first-child .panel, .tabs-container .tab-pane:first-child .panel {
    border-radius: 5px 5px 0 0;
  }
  .get-involved .tab-pane:last-child .panel, .staff-directory-page .tab-pane:last-child .panel, .department-directory-page .tab-pane:last-child .panel, .tabs-container .tab-pane:last-child .panel {
    border-radius: 0 0 5px 5px;
  }
}
.get-involved .panel-heading A:after, .staff-directory-page .panel-heading A:after, .department-directory-page .panel-heading A:after, .tabs-container .panel-heading A:after {
  content: "-";
  float: right;
  color: var(--ung-blue);
  font-size: 35px;
  position: relative;
  left: -4px;
  top: -8px;
}
.get-involved .panel-heading A.collapsed:after, .staff-directory-page .panel-heading A.collapsed:after, .department-directory-page .panel-heading A.collapsed:after, .tabs-container .panel-heading A.collapsed:after {
  content: "+";
  font-size: 30px;
  left: 0;
  top: -2px;
}
.get-involved.tabs-darkBg, .staff-directory-page.tabs-darkBg, .department-directory-page.tabs-darkBg, .tabs-container.tabs-darkBg {
  background: transparent;
}
.get-involved.tabs-darkBg .nav-tabs .nav-item, .staff-directory-page.tabs-darkBg .nav-tabs .nav-item, .department-directory-page.tabs-darkBg .nav-tabs .nav-item, .tabs-container.tabs-darkBg .nav-tabs .nav-item {
  margin-right: 1px;
}
.get-involved.tabs-darkBg .nav-tabs .nav-link, .staff-directory-page.tabs-darkBg .nav-tabs .nav-link, .department-directory-page.tabs-darkBg .nav-tabs .nav-link, .tabs-container.tabs-darkBg .nav-tabs .nav-link {
  background: url("/_uploads/images/2021/template/GreyTab.svg") no-repeat;
}
.get-involved.tabs-darkBg .nav-tabs .nav-link:hover, .staff-directory-page.tabs-darkBg .nav-tabs .nav-link:hover, .department-directory-page.tabs-darkBg .nav-tabs .nav-link:hover, .tabs-container.tabs-darkBg .nav-tabs .nav-link:hover {
  background: url("/_uploads/images/2021/template/DarkBlueTab.svg") no-repeat;
  color: white;
}

.lead-story {
  margin: 0;
  padding: 0;
  background-size: cover;
  position: relative;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}
@media (max-width: 900px) {
  .lead-story .container {
    padding-left: 0;
    padding-right: 0;
    min-width: none;
    max-width: none;
  }
}
.lead-story .content {
  width: 100%;
  background: var(--ung-blue);
  padding: 40px 20px;
}

/* #OK - adding catch all white text in section */
.lead-story-inner, .lead-story-inner H2, .lead-story-inner H3,  .lead-story-inner H4 {
    color: #fff;
}

@media (min-width: 900px) {
  .lead-story .content {
    float: right;
    padding: 0;
    background: none;
  }
}
.lead-story .leader-h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
}
@media (min-width: 900px) {
  .lead-story .leader-h1 {
    font-size: 90px;
    margin-bottom: 25px;
  }
}
.lead-story .leader-h2 {
  color: var(--ung-gold);
  font-size: 36px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  .lead-story .leader-h2 {
    margin-bottom: 25px;
  }
}
.lead-story .lead {
  color: #fff;
  font-size: 18px;
  font-weight: normal !important;
  width: 100%;
  margin-bottom: 40px;
  display: inline-block;
}
@media (min-width: 900px) {
  .lead-story .lead {
    margin-bottom: 0;
    max-width: 450px;
  }
}
@media (min-width: 900px) {
  .lead-story .lead-story-inner {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-65%);
  }
}
@media (max-width: 900px) {
  .lead-story .btn {
    width: 100%;
  }
}
@media (min-width: 900px) {
  .lead-story .btn {
    clear: both;
    margin-top: 20px;
    line-height: 20px;
  }
}
.lead-story .background {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (min-width: 900px) {
  .lead-story .background {
    height: 60vh;
    display: flex;
    min-height: 800px;
  }
}
@media (min-width: 1200px) {
  .lead-story .background {
    height: 70vh;
            object-position: top;
  }
}
.lead-story .overlay {
  display: none;
}
@media (min-width: 900px) {
  .lead-story .overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* OK - update to sa国际传媒官网网页入口 Leads button on home page 7/19/21 */
.home DIV#main-content .start-your-journey-wrapper .lead-story-inner .content A.btn {
  display: inline-block;
  width: fit-content;
  width: -moz-fit-content;
}

.home DIV#main-content .lead-story-inner .content A.btn {
  display: block;
  width: fit-content;
  width: -moz-fit-content;
}


@media (min-width: 900px) {
  .home DIV#main-content .jumbotron.text-right .lead-story-inner .content A.btn,
  .home DIV#main-content .jumbotron.text-right .lead-story-inner P.lead {
   float: right;
  }
}

@media (min-width: 900px) {
  .home DIV#main-content .jumbotron.text-center .lead-story-inner .content A.btn {
  margin: 20px auto;
  }
}

@media (max-width: 899px) {
  .home DIV#main-content .lead-story-inner .content A.btn {
  width: 100%;
  }
}


/**** 
#OK - replicate .lead-story & .lead-story-inner ( row image w/ content) 
- using generic class - .img-story & .img-story-inner 
/


.img-story {
  margin: 0;
  padding: 0;
  background-size: cover;
  text-align: right;
  position: relative;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}

@media (max-width: 1000px) {
  .img-story .container {
    padding-left: 0;
    padding-right: 0;
    min-width: none;
    max-width: none;
  }
}
.img-story .content {
  width: 100%;
  background: var(--ung-blue);
  padding: 1rem 20px;
}

/* #OK - adding catch all white text in section */
.img-story-inner, .img-story-inner H2, .img-story-inner H3,  .img-story-inner H4 {
    color: #fff;
}

.img-story-inner H2.text-blue,
.img-story-inner H3.text-blue,
.img-story-inner H4.text-blue,
.img-story-inner H5.text-blue,
.img-story-inner H6.text-blue {
    color: var(--dark-blue);
}

.img-story-inner H2.text-yellow,
.img-story-inner H3.text-yellow,
.img-story-inner H4.text-yellow,
.img-story-inner H5.text-yellow,
.img-story-inner H6.text-yellow {
    color: var(--ung-gold);
}


.img-story-inner .card H2, .img-story-inner .card H3, .img-story-inner .card H4,  .img-story-inner .card H5 {
    color: var(--dark-blue);
}


.img-story-inner .card {
  color:var(--body-text);
}


@media (min-width: 1000px) {
  .img-story .content {
    float: right;
    padding: 0;
    background: none;
  }
}

@media (max-width: 768px) {
  .img-story .content {
  text-align: center;
 }
}

.img-story .leader-h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
}
@media (min-width: 900px) {
  .img-story .leader-h1 {
    font-size: 90px;
    margin-bottom: 25px;
    text-align: right;
  }
}
.img-story .leader-h2 {
  color: var(--ung-gold);
  font-size: 36px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  .img-story .leader-h2 {
    margin-bottom: 25px;
    text-align: right;
  }
}
.img-story .lead {
  color: #fff;
  font-size: 18px;
  font-weight: normal !important;
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .img-story .lead {
    margin-bottom: 0;
    text-align: right;
    max-width: 450px;
    float: right;
  }
}
@media (min-width: 1000px) {
  .img-story .img-story-inner {
    position: absolute;
     top: 24%;
    width: 100%;
    transform: translateY(-15%);
  }
}

@media (max-width: 1200px) {
  .img-story .img-story-inner {
        top: 18%;
  }
}
@media (max-width: 900px) {
  .img-story .btn {
    width: 100%;
    margin-top: 1rem;
  }
}
@media (min-width: 900px) {
  .img-story .btn {
    margin-top: 16px;
    line-height: 20px;
  }
}
.img-story .background {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (min-width: 1000px) {
  .img-story .background {
    /*height: 60vh; */
    display: flex;
    /*min-height: 800px;*/
  }
}
@media (min-width: 1000px) {
  .img-story .background {
    /*height: 70vh;*/
  }
}
.img-story .overlay {
  display: none;
}
@media (min-width: 1000px) {
  .img-story .overlay {
    display: block;
    width: 100%;
    height: 100%;
   /*background: linear-gradient(to right, transparent 0%, black 100%); */
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* JUMBOTRON Modifications - WIP */

/*
@media (max-width: 1920px) {
  .jumbotron.img-story .img-story-inner.text-left {
    position: absolute;
    top: 24%;
    width: 50%;
    left: 18%;
    transform: translateY(-15%);
  }
}

@media (max-width: 1600px) {
  .jumbotron.img-story .img-story-inner.text-left {
    left: 14%;
  }
}

@media (max-width: 1400px) {
  .jumbotron.img-story .img-story-inner.text-left {
    left: 10%;
  }
}

@media (max-width: 1200px) {
  .jumbotron.img-story .img-story-inner.text-left {
    left: 10%;
    top: 20%
  }
}

@media (max-width: 999px) {
  .jumbotron.img-story .img-story-inner.text-left {
  width: 100%;
 position: relative;
 left: 0%;
  }
}

*/

/* #OK - removes images with overlay as row image bg below 900 
@media (max-width: 1000px) {
  IMG.overlay-ung-blue-img,
  IMG.overlay-dark-blue-img,
  IMG.overlay-blue-img {
  display: none; 
 }
}
*/ 

.points-of-pride {
  min-height: 30vh;
  background: var(--lite-gray);
  padding-bottom: 25px;
  overflow: hidden;
  display: table;
  position: relative;
}
@media (min-width: 1080px) {
  .points-of-pride{ padding: 60px 0 80px 0 }

  .points-of-pride .left-side-line {
    background: var(--ung-gold);
    height: 5px;
    top: 206px;
    position: absolute;
    left: 0;
    width: 50%;
  }

  .points-of-pride .right-side-line {
    background: var(--ung-gold);
    height: 5px;
    top: 190px;
    position: absolute;
    right: 0;
    width: 50%;
  }
}

.points-of-pride .container {
  text-align: center;
  max-width: 100% !important;
  width: 100% !important;
}

@media (min-width: 1200px) {
  .points-of-pride .container {
    max-width: 1200px !important;
    width: 1200px !important;
  }
}

.points-of-pride .container.center-container {
  background: var(--lite-gray) url("/_uploads/images/2021/template/points-of-pride-lines.svg") no-repeat;
  background-size: 127%;
  background-position: center 30%;
}

@media (max-width: 1079px) {
  .points-of-pride .container.center-container {
    max-width: 310px;
    background: url("/_uploads/images/2021/template/vertical-gold-arrow.svg") repeat-y;
    background-size: 100% 210px;
    padding: 70px 0 0 0;
    background-position: 0 -33px;
  }
}

@media (min-width: 1080px) {
  .points-of-pride .container.center-container {
    max-width: 1080px;
    width: 1080px;
    height: 545px;
    position: relative;
  }
}

.points-of-pride .outer-circle {
  background: var(--lite-gray);
  border: 15px solid var(--ung-gold);
  width: 240px;
  height: 240px;
  border-radius: 260px;
  padding: 16px;
}

.points-of-pride .point-of-pride {
  border: none;
  background: transparent;
  text-align: center;
  max-width: 280px;
  display: block;
  margin: 0 auto;
}

@media (min-width: 1080px) {
  .points-of-pride .point-of-pride.left {
    position: absolute;
    top: 0;
    left: 123px;
    z-index: 1;
  }

  .points-of-pride .point-of-pride.middle {
    position: absolute;
    top: 153px;
    left: 472px;
    z-index: 1;
  }

  .points-of-pride .point-of-pride.right {
    position: absolute;
    top: -20px;
    right: 68px;
    z-index: 1;
  }
}

.points-of-pride .card-title {
  font-size: 50px;
  font-family: var(--baseSerifFont); /* was: "Sentinel-Semibold" | EN - 2025/10/18 */
  font-style: italic;
  color: var(--dark-blue);
  letter-spacing: -2px;
  vertical-align: middle;
  width: 175px;
  height: 175px;
  display: table-cell;
  background: #fff;
  border-radius: 300px;
  border: 0;
  box-shadow: 0px 0px 0px 5px var(--ung-gold);
}

.points-of-pride .card-text {
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  color: #272727;
  padding: 7px 0;
  margin: 15px 0 28px 0;
  display: inline-block;
  font-size: 18px;
  background: var(--lite-gray);
  line-height: 22px;
}

@media (min-width: 1080px) {
  .points-of-pride .card-text {
    padding: 20px 0 0 0;
    margin: 0;
  }
}

.start-your-journey-wrapper {
  margin: 0;
  background: var(--lite-gray);
  position: relative;
}
.start-your-journey-wrapper .start-your-journey {
  margin: 0;
  background: linear-gradient(to right, transparent 0%, black 100%)/*, url("/_uploads/images/2021/temp/start-your-journey-bg.jpg")*/;
  background-size: cover !important;
  position: relative;
  padding-bottom: 100px;
}
@media (min-width: 1024px) {
  .start-your-journey-wrapper .start-your-journey {
    height: 62vh;
    padding-bottom: 0;
    min-height: 800px;
  }
}
@media (max-width: 767.98px) {
  .start-your-journey-wrapper .start-your-journey {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%)/*, url("/_uploads/images/2021/temp/start-your-journey-bg.jpg")*/;
    padding-top: 60px;
  }
}
.start-your-journey-wrapper .callouts {
  padding-left: 0;
  padding-right: 0;
  min-height: 50px;
  background: var(--lite-gray);
  margin-top: -70px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .start-your-journey-wrapper .callouts {
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* 
#OK - Adjusts Start your journey callouts - fix from find your place fix for mobile-only
*/

@media (max-width: 768px) {
  .start-your-journey-wrapper .callouts {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
     padding-bottom: 40px;
  }
}

.start-your-journey-wrapper .callouts .card {
  width: calc(100% - 20px);
  margin: 10px;
  display: inline-block;
  border-radius: 0;
  border: 0;
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.start-your-journey-wrapper .callouts .card:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .start-your-journey-wrapper .callouts .card {
    width: calc(33% - 20px);
    margin: -100% 10px 0 10px;
  }
}
.start-your-journey-wrapper .callouts .cta-link {
  color: var(--ung-blue);
  font-size: 24px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. */
}
.start-your-journey-wrapper .leader-h1 {
  color: #fff;
  font-size: 32px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. */
}
@media (min-width: 1024px) {
  .start-your-journey-wrapper .leader-h1 {
    font-size: 90px;
    margin-bottom: 30px;
  }
}
.start-your-journey-wrapper P.lead {
  color: #fff;
  font-size: 18px;
  max-width: 400px;
  display: inline-block;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: normal !important;
}
@media (min-width: 768px) {
  .start-your-journey-wrapper P.lead {
    margin-bottom: 50px;
  }
}
.start-your-journey-wrapper .start-your-journey-story {
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .start-your-journey-wrapper .start-your-journey-story {
    text-align: right;
    position: absolute;
    top: 50%;
    transform: translateY(-65%);
  }
}
@media (min-width: 768px) {
  .start-your-journey-wrapper .btn.first {
    margin-bottom: 20px;
  }
}

.vertical-div {
  width: 100%;
  text-align: center;
  display: inline-block;
}

.back-title {
  color: var(--ung-gold);
  font-size: 220px;
  line-height: 300px;
  opacity: 0.1;
  position: absolute;
  z-index: 1;
  top: -6%;
  left: -2%;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--baseSerifFont); /* was: "Sentinel-Bold" | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  max-width: 100%;
  overflow: visible; /* was: `hidden`, but causes right-hand side to be cut-off in that weird scrolling effect. | EN - 2025/10/18 */
}

/* OK - fix for scrolling Get Involved - Browser GSAP bug - bacgkround text solid on tranform 0 0 -  11/23/21 */
#get-involved-backtitle {
  will-change: transform, opacity;
}

@media (max-width: 768px) {
  .back-title {
    display: none !important;
  }
}

BODY.home {
  background: var(--ung-blue);
}

#get-connected {
  background: var(--lite-gray);
  position: relative;
  overflow: hidden;
}
#get-connected .slick-track {
  display: flex;
}
#get-connected .slick-track .slick-slide {
  display: flex;
  height: auto;
}

.social-icons {
  text-align: center;
  margin: 20px 0 30px 0;
  z-index: 89;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 5px 0;
}
.social-icons A {
  padding: 0;
  margin: 0 2px 5px;
  display: inline-block;
}
@media (min-width: 768px) {
  .social-icons A {
    margin: 0 7px 5px;
  }
}
.social-icons I {
  width: 46px;
  height: 46px;
  padding: 11px;
  font-size: 21px;
  color: var(--ung-blue);
  border: 2px solid var(--teal);
  border-radius: 100px;
  background: #fff;
}
@media (min-width: 768px) {
  .social-icons I {
    width: 50px;
    height: 50px;
    padding: 11px;
    font-size: 23px;
  }
}
.social-icons I:hover, .social-icons I:focus {
  color: #fff;
  background: var(--dark-blue);
  transition: background-color 500ms linear;
}
.social-icons I.fa-youtube:before {
  position: relative;
  left: -1px;
}
.social-icons .m-logo {
  background: #fff url("/_uploads/images/2021/template/m-logo.svg") no-repeat;
  width: 50px;
  height: 50px;
  background-position: center;
  border-radius: 100px;
  border: 2px solid var(--teal);
  position: relative;
  background-size: 25px;
}
.social-icons .m-logo:hover, .social-icons .m-logo:focus {
  background: var(--dark-blue) url("/_uploads/images/2021/template/m-logo-white.svg") no-repeat;
  background-size: 30px;
  background-position: center;
  transition: background-color 500ms linear;
}
@media (min-width: 768px) {
  .social-icons .m-logo {
    background-size: 26px;
  }
  .social-icons .m-logo:hover {
    background: var(--dark-blue) url("/_uploads/images/2021/template/m-logo-white.svg") no-repeat;
    background-size: 30px;
    background-position: center;
  }
}
.social-icons.large-icons I, .social-icons.large-icons .m-logo {
  width: 50px !important;
  height: 50px !important;
  padding: 10px !important;
  font-size: 24px !important;
}

.news-listing-page #get-connected {
  padding-top: 0;
}
.news-listing-page #get-connected .back-title {
  display: none;
}

@media (max-width: 768px) {
  #get-connected {
    padding: 1px 0;
  }
}
#get-connected .slick-dots-wrapper {
  margin: 30px 0 0 0;
  text-align: center;
}
#get-connected .slick-dots {
  list-style: none;
  width: auto;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  max-width: none;
  display: inline-block;
}
#get-connected .slick-dots BUTTON {
  border-radius: 100px;
  width: 17px;
  height: 17px;
  text-indent: 9999px;
  overflow: hidden;
  border: 1px solid var(--ung-blue);
}
#get-connected .slick-dots LI {
  display: inline-block;
  margin: 0 7px;
}
#get-connected .slick-dots LI.slick-active BUTTON {
  background: var(--ung-gold);
}
#get-connected .slick-social-prev,
#get-connected .slick-social-next {
  display: inline-block;
  font-size: 34px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  cursor: pointer;
  color: var(--dark-blue);
}
#get-connected .slick-social-prev:hover,
#get-connected .slick-social-next:hover {
  background: var(--dark-gray);
}
#get-connected .slick-social-next {
  margin-left: 15px;
}
#get-connected .slick-social-prev {
  margin-right: 15px;
}
#get-connected .btn:hover I {
  transform: translateX(0px);
}

.social-carousel-item {
  width: 240px;
  max-width: 240px;
  margin: 0 10px;
  border-radius: 0;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  border: none;
  position: relative;
  background: #fff;
  max-height: 300px;
  overflow: hidden;
}
.social-carousel-item:hover {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
.social-carousel-item .card-body {
  padding: 0;
}
.social-carousel-item .btn-icon {
  position: absolute;
  margin: 0;
  padding: 0;
  height: 30px;
  background: var(--ung-blue);
  color: #fff;
  text-align: right;
  bottom: 0;
  width: 100%;
}
.social-carousel-item .btn-icon I {
  float: right;
  font-size: 18px;
  color: white;
  padding: 5px;
}
.social-carousel-item .card-text {
  padding: 25px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}
.social-carousel-item .social-link .social-hover-text {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-size: 16px;
  display: inline-block;
  position: relative;
  text-transform: none;
  top: 5px;
  left: -5px;
  display: none;
}
.social-carousel-item .social-link:hover {
  text-decoration: none;
}
.social-carousel-item .social-link:hover .social-hover-text {
  display: inline-block;
}

.home .main-navigation {
  display: block;
}

.abs-top,
.abs-bottom {
  width: 100%;
  z-index: 99;
  position: absolute; 
}

/* 
#OK  find your place mobile header adjust 
*/

@media (max-width: 769px) {
  .abs-top, .abs-bottom {
    position: relative;
  }
}

@media (min-width: 769px) {
  .abs-top {
    top: 0;
  }
}

@media (min-width: 769px) {
  .abs-bottom {
    bottom: 0;
  }
}

.main-navigation {
  display: none;
  position: relative;
}
.main-navigation .sub-nav-frontpage {
  background-color: rgba(0, 47, 135, 0.85);
  border: 0;
}
.main-navigation .sub-nav-frontpage UL {
  list-style: none;
  color: #fff;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}
.main-navigation .sub-nav-frontpage UL A {
  color: #fff;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 700; /* was: 900 | EN - 2025/10/18 */
  font-size: 15px;
  text-decoration: none;
  transition: all 0.6s;
  position: relative;
}
.main-navigation .sub-nav-frontpage UL A:before {
  content: "";
  width: 0px;
  height: 2px;
  position: absolute;
  bottom: -5px;
  left: 0;
  opacity: 0;
  background: var(--ung-gold);
  transition: all 0.3s;
}
.main-navigation .sub-nav-frontpage UL A:hover:before {
  opacity: 1;
  width: 100%;
  left: 0;
  background: var(--ung-gold);
}


/*
#OK - JET's  Home Page Main Buttons under Hero adjustment 
*/ 

.frontpage-banner .abs-bottom P.btn-wrap-center {
  margin-bottom:0;
}

.frontpage-banner .abs-bottom P.btn-wrap-center A.btn {
  margin-top:0;
}

.frontpage-banner,
.page-header-banner {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .frontpage-banner,
  .page-header-banner {
    background: #AAB9D4;
  }

  .frontpage-banner .abs-bottom P.btn-wrap-center A.btn {
  margin-top: 1rem;
  }

   .frontpage-banner .abs-bottom P.btn-wrap-center A.btn:last-child {
    margin-bottom: 1rem;
   }
}

/* #OK */
@media (max-width: 768px) {
  .carousel-header-wrapper .page-header-banner {
    background: var(--ung-blue);
  }
}

.frontpage-banner .container-fluid, .frontpage-banner .container-sm, .frontpage-banner .container-md, .frontpage-banner .container-lg, .frontpage-banner .container-xl,
.page-header-banner .container-fluid,
.page-header-banner .container-sm,
.page-header-banner .container-md,
.page-header-banner .container-lg,
.page-header-banner .container-xl {
  overflow: hidden;
}
.frontpage-banner .slick-dots,
.page-header-banner .slick-dots {
  bottom: 0;
  position: absolute;
  list-style: none;
  width: auto;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  max-width: none;
  display: inline-block;
  left: 0;
  width: 100%;
}
@media (min-width: 769px) {
  .frontpage-banner .slick-dots,
  .page-header-banner .slick-dots {
    bottom: 120px;
  }
}

/*
#OK - For interior Carousel ATT Header - bullets
*/
@media (min-width: 769px) {
  .carousel-header-wrapper .frontpage-banner .slick-dots,
  .page-header-banner .slick-dots {
    bottom: 8px;
  }
}
.frontpage-banner .slick-dots BUTTON,
.page-header-banner .slick-dots BUTTON {
  border-radius: 100px;
  width: 17px;
  height: 17px;
  text-indent: 9999px;
  overflow: hidden;
  border: 1px solid black;
}
.frontpage-banner .slick-dots LI,
.page-header-banner .slick-dots LI {
  display: inline-block;
  margin: 0 7px;
}
.frontpage-banner .slick-dots LI.slick-active BUTTON,
.page-header-banner .slick-dots LI.slick-active BUTTON {
  background: black;
  border: 1px solid white;
}
.frontpage-banner .slick-prev,
.page-header-banner .slick-prev {
  left: 10px;
}
@media (min-width: 1360px) {
  .frontpage-banner .slick-prev,
  .page-header-banner .slick-prev {
    left: calc(50% - 660px);
  }
}
.frontpage-banner .slick-next,
.page-header-banner .slick-next {
  right: 10px;
}
@media (min-width: 1360px) {
  .frontpage-banner .slick-next,
  .page-header-banner .slick-next {
    right: calc(50% - 660px);
  }
}
.frontpage-banner .slick-prev,
.frontpage-banner .slick-next,
.page-header-banner .slick-prev,
.page-header-banner .slick-next {
  position: absolute;
  top: 23%;
  z-index: 10;
  overflow: hidden;
  border: 0;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  cursor: pointer;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 769px) {
  .frontpage-banner .slick-prev,
  .frontpage-banner .slick-next,
  .page-header-banner .slick-prev,
  .page-header-banner .slick-next {
    top: 43%;
  }
}
.frontpage-banner .slick-prev:hover,
.frontpage-banner .slick-next:hover,
.page-header-banner .slick-prev:hover,
.page-header-banner .slick-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.student-decision-section {
  background: var(--ung-blue);
  padding: 10px 0;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  position: relative;
  width: 100%;
}
@media (min-width: 769px) {
  .student-decision-section {
    background-color: var(--ung-blue);
  }
}
.student-decision-section .container {
  color: white;
}
@media (max-width: 768px) {
  .student-decision-section .container {
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
.student-decision-section .decision-items {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 769px) {
  .student-decision-section .decision-items {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .student-decision-section .decision-items .decision-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .student-decision-section .decision-items .decision-item:first-child {
    display: none;
  }
}
.student-decision-section .decision-items .decision-item:nth-child(2) {
  flex-grow: 1;
}
@media (min-width: 769px) {
  .student-decision-section .decision-items .decision-item:nth-child(2) SPAN {
    display: none;
  }
}
.student-decision-section .decision-item-select {
  display: flex;
  margin-top: 10px;
  order: 1;
}
@media (min-width: 769px) {
  .student-decision-section .decision-item-select {
    order: inherit;
    margin-top: 0;
  }
}
.student-decision-section .decision-item-select SPAN {
  padding-top: 8px;
  min-width: 70px;
}
@media (min-width: 769px) {
  .student-decision-section .decision-item-select SPAN {
    padding-top: 0;
  }
}
.student-decision-section SPAN {
  text-transform: uppercase;
  margin-right: 10px;
}
@media (min-width: 769px) {
  .student-decision-section SPAN {
    margin-right: 10px;
  }
}
.student-decision-section SELECT {
  padding: 6px;
  margin-right: 10px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  width: 100%;
}
@media (max-width: 991.98px) {
  .student-decision-section SELECT {
    margin: 10px 0 !important;
  }
}
.student-decision-section .btn {
  width: 100%;
}
@media (max-width: 991.98px) {
  .student-decision-section .btn {
    margin: 10px 0;
  }
}

.institution-info-section {
  background: #fff;
  padding: 10px 0;
  color: #272727;
}
@media (min-width: 769px) {
  .institution-info-section {
    background-color: rgba(255, 255, 255, 0.85);
  }
}
.institution-info-section P {
  font-family: var(--baseSerifFont); /* was: "Sentinel-Semibold" | EN - 2025/10/18 */
  font-size: 18px;
  line-height: 29px;
  margin: 0;
  padding: 20px;
  text-align: center;
}
@media (min-width: 769px) {
  .institution-info-section P {
    font-size: 24px;
    padding: 5px 0;
  }
}
.institution-info-section A {
  color: #272727;
  text-decoration: underline;
}
.institution-info-section A:hover {
  color: var(--ung-blue);
}

@media (max-width: 768px) {
  .homepage-banner {
    margin-top: -26px;
  }
}

.slide {
  position: relative;
}
.slide .container-fluid, .slide .container-sm, .slide .container-md, .slide .container-lg, .slide .container-xl {
  margin: 0;
  padding: 0;
}

/* #OK - Shifts up Slide Content on Home 
.home .slide .container {
   position: relative;
   bottom: 40px;
}
*/
.slide .container {
  margin: 0;
  padding: 0;
}
.slide .slide-content {
  padding: 20px;
}
@media (min-width: 769px) {
  .slide .slide-content {
    padding: 0 80px;
  }
}
@media (min-width: 1200px) {
  .slide .slide-content {
    padding: 0;
  }
}
.slide .banner-image,
.slide .banner-video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .slide .banner-image,
.slide .banner-video {
    height: 50vh;
    display: flex;
    min-height: 800px;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .slide .banner-image,
.slide .banner-video {
    height: 62vh;
  }
}
@media (min-width: 1200px) {
  .slide .banner-image,
.slide .banner-video {
    height: 70vh;
  }
}
@media (min-width: 769px) {
  .slide .banner-image {
    -webkit-animation-name: heroFadeInImg;
            animation-name: heroFadeInImg;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    transform-origin: center;
  }
}
.slide .container-fluid, .slide .container-sm, .slide .container-md, .slide .container-lg, .slide .container-xl {
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .slide .slide-container {
    max-width: none !important;
  }
}
@media (min-width: 769px) {
  .slide .slide-container {
    position: relative;
    margin-bottom: 100px;
  }
}
.slide .slide-content {
  background: #AAB9D4;
}

/* #OK - modified for att header below ss bg */

.carousel-header-wrapper .slide .slide-content {
  background: var(--ung-blue);
}
@media (min-width: 769px) {
  .slide .slide-content, .carousel-header-wrapper .slide .slide-content {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: transparent;
  }
}
@media (min-width: 769px) {
  .slide .overlay {
    /*background: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.6) 90%); VP Default - Remove after launch*/
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
  }
}
.slide .heading-primary,
.slide .heading-secondary {
  color: #fff;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  font-size: 70px;
}

/* #OK */
.carousel-header-wrapper .slide .heading-primary  {
  color: #fff;
}
@media (max-width: 768px) {
  .slide .heading-primary,
.slide .heading-secondary {
    color: var(--dark-blue);
    font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
    font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
    font-size: 24px;
    text-align: center;
    line-height: 34px;
  }
}

/* #OK - Adjust Homepage Slide header */
@media (min-width: 1024px) {
 .home .slide .heading-primary,
.home .slide .heading-secondary {
    width: 55%;
  }
}
@media (min-width: 1024px) {
  .slide .heading-primary,
.slide .heading-secondary {
    width: 70%;
  }
}
.slide .heading-secondary {
  font-size: 42px;
}
.slide .description {
  color: #fff;
  font-size: 18px;
  width: 100%;
}
@media (min-width: 768px) {
  .slide .description {
    max-width: 550px;
  }
}

@media (min-width: 768px) { 
  .video-control {
    position: absolute;
    z-index: 3;
    background: url("/_uploads/images/2021/template/movie-oval.svg") no-repeat;
    width: 74px;
    height: 70px;
    text-align: center;
    display: table;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .video-control {
    position: absolute;
    z-index: 3;
    background: url("/_uploads/images/2021/template/movie-oval.svg") no-repeat;
    background-size: 100%;
    width: 60px;
    height: 57px;
    text-align: center;
    display: table;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
  }
}

@media (min-width: 1200px) {
  .video-control {
    bottom: 145px;
    right: calc(50% - 560px);
  }
}

@media (max-width: 1200px) {
  .video-control {
    bottom: 22%;
    right: 12%;
  }
}

@media (max-width: 1000px) {
  .video-control {
    bottom: 28%;
    right: 12%;
  }
}

@media (max-width: 768px) {
  .video-control {
    bottom: 68%;
    right: 12%;
  }
}


@media (max-width: 576px) {
  .video-control {
    bottom: 72%;
    right: 12%;
  }
}

@media (max-width: 510px) {
  .video-control {
    bottom: 74%;
    right: 12%;
  }
}

@media (max-width: 460px) {
  .video-control {
    bottom: 77%;
    right: 12%;
  }
}

@media (max-width: 375px) {
  .video-control {
    bottom: 79%;
    right: 14%;
  }
}

@media (max-width: 325px) {
  .video-control {
    bottom: 84%;
    right: 18%;
  }
}


/*

@media (min-width: 767px) {
 .video-control {
    position: absolute;
    bottom: 10%;
    right: 20%;
  }
}


@media (max-width: 767px) {
   .video-control {
     bottom: 40%;
    right: 10%;
  }
}

@media (max-width: 576px) {
   .video-control {
     bottom: 50%;
    right: 10%;
  }
}


@media (max-width: 767px) {
  .video-control {
     bottom: 40%;
    right: 10%;
  }
}

@media (max-width: 576px) {
   .video-control {
     bottom: 50%;
    right: 10%;
  }
}
*/


@media (min-width: 1200px) {
 .carousel-header-wrapper .video-control {
    bottom: 9%;
    right: calc(50% - 560px);
  }
}

@media (max-width: 1200px) {
   .carousel-header-wrapper .video-control {
    bottom: 10%;
    right: 12%;
  }
}

@media (max-width: 1000px) {
  .carousel-header-wrapper  .video-control {
    bottom: 10%;
    right: 12%;
  }
}

@media (max-width: 768px) {
   .carousel-header-wrapper .video-control {
    bottom: 36%;
    right: 12%;
  }
}


@media (max-width: 576px) {
   .carousel-header-wrapper .video-control {
    bottom: 44%;
    right: 12%;
  }
}

@media (max-width: 510px) {
   .carousel-header-wrapper .video-control {
    bottom: 46%;
    right: 12%;
  }
}

@media (max-width: 460px) {
   .carousel-header-wrapper .video-control {
    bottom: 52%;
    right: 12%;
  }
}

@media (max-width: 375px) {
   .carousel-header-wrapper .video-control {
    bottom: 60%;
    right: 14%;
  }
}

@media (max-width: 325px) {
   .carousel-header-wrapper .video-control {
    bottom: 66%;
    right: 18%;
  }
}

/* ATT Video header play btn */


@media (min-width: 1200px) {
 .video-header .video-control {
    bottom: 9%;
    right: 20%
  }
}

@media (max-width: 1200px) {
    .video-header .video-control {
    bottom: 10%;
    right: 14%;
  }
}

@media (max-width: 1000px) {
   .video-header  .video-control {
    bottom: 10%;
    right: 12%;
  }
}

@media (max-width: 768px) {
   .video-header .video-control {
    bottom: 50%;
    right: 12%;
  }
}


@media (max-width: 576px) {
    .video-header  .video-control {
    bottom: 55%;
    right: 12%;
  }
}

@media (max-width: 510px) {
   .video-header .video-control {
    bottom: 58%;
    right: 12%;
  }
}

@media (max-width: 460px) {
    .video-header .video-control {
    bottom: 62%;
    right: 12%;
  }
}

@media (max-width: 375px) {
    .video-header .video-control {
    bottom: 66%;
    right: 14%;
  }
}

@media (max-width: 325px) {
    .video-header .video-control {
    bottom: 72%;
    right: 12%;
  }
}

/* */

.video-control:hover {
  opacity: 1;
}
.video-control .inner {
  display: table-cell;
  vertical-align: middle;
}
.video-control .fa-pause {
  display: none;
}
.video-control .fa-play {
  display: inline-block;
}
.video-control.playing .fa-pause {
  display: inline-block;
}
.video-control.playing .fa-play {
  display: none;
}

/* VP - Settings 
.image-header {
  width: 100%;
  min-height: 551px;
  max-height: 551px;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* 


/* =============== 
#OK -  Interior Image Header 
*/


.image-header H1, .image-header H2, .image-header H3, .image-header H4, .image-header H5, .image-header H6 {
  color: #fff
}  

.image-header A.btn.btn-outline-secondary, .image-header A.btn.btn-outline-primary {
  color: #fff; 
}

.image-header A.btn.btn-outline-primary:hover {
  color: var(--ung-blue);
}

.image-header {
  width: 100%;
  min-height: 65vh;
  max-height: 65vh;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.image-header .row {
  position: relative;
  top: 160px;
}

@media (max-width: 992px) {
    .image-header .row {
    top: 110px;
    }
  
    .image-header {
    min-height: 45vh;
    }
}

@media (max-width: 768px) {
    .image-header {
    min-height: 35vh;
    }
}

@media (max-width: 576px) {
    .image-header .row P, .image-header .row H3, 
    .image-header .row H2, .image-header .row H4, 
    .image-header .row H5, .image-header .row H6 {
    text-align: center;
    }

   .image-header {
    min-height: 25vh;
  }
}

/* #OK - Apply slight blur effect - blue overlay - Might not keep
@media (max-width: 992px) {
  .image-header  {
    backdrop-filter: blur(1px);
  }
}

@media (max-width: 768px) {
  .image-header  {
    backdrop-filter: blur(2px);
   background-color: rgb(0, 47, 135, .4)
  }
}

@media (max-width: 576px) {
  .image-header  {
       background-color: rgb(0, 47, 135, .6)
  }
}
 */

 
 
/*#OK - resizing when image is only content header and page width*/

DIV.container.image-header.only-content {
     width: 1140px;
     height: 436px;
}

  .container.image-header.only-content {
     min-height: 45vh; 
     background-size: contain;
  }

@media (max-width: 1199px) {
   DIV.container.image-header.only-content {
      width: 971px;
      height: 370px;
  }

    .container.image-header.only-content {
     min-height: 10px; 
     background-size: contain;
  }
}


@media (max-width: 991px) {
   DIV.container.image-header.only-content {
         width: 720px;
     height: 275px;
   }
 
  .container.image-header.only-content {
     background-position: top;
  }
}

@media (max-width: 768px) {
   DIV.container.image-header.only-content {
         width: 540px;
         height: 207px;
   }
}

@media (max-width: 576px) {

     DIV.container.image-header.only-content {
         width: 375px;
         height: 143px;
   }
}

@media (max-width: 375px) {

     DIV.container.image-header.only-content {
    display: none;
   }
}

/*
#OK - interior video header adjustment 
*/

.video-header {
  width: 100%;
  min-height: auto;
  max-height: 65vh;
  position: relative;
  overflow: hidden;
  background: var(--ung-blue);
}

/* 
#OK 
*/
@media (max-width: 768px) {
  .video-header {
    max-height: fit-content;
    padding-bottom: 24px;
  }
}

/* 
#OK 
*/
.video-header A.btn.btn-outline-secondary {
  color: #fff;
}

/* VP - Settings
.video-header - Remove later {
  width: 100%;
  min-height: 551px;
  max-height: 551px;
  position: relative;
  overflow: hidden;
}
*/

.video-header video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .video-header .overlay {
    /*background: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.6) 90%); VP Default Property */
    width: 100vw;
    height: 100%;
    position: absolute;
    z-index: 2;
  }
}
.video-header-content.text-center {
  position: absolute;
  top: 25%;
  z-index: 3;
  width: 100%;
  left: 0%;
}

@media (max-width: 992px) {
  .video-header-content.text-center {
  top: 20%;
  }
}

@media (max-width: 768px) {
.video-header-content.text-center {
    position: relative;
  }
 }

.video-header-content.text-left {
  position: absolute;
  top: 25%;
  z-index: 3;
  width:100%;
  left: 21%;
}

@media (max-width: 992px) {
  .video-header-content.text-left {
  top: 20%;
  }
}

@media (max-width: 768px) {
.video-header-content.text-left {
    position: relative;
    text-align: center !important;
    left: 2%;
  }
 }

.video-header-content.text-right {
  position: absolute;
  top: 25%;
  z-index: 3;
  width:100%;
  right: 22.4%;
}

@media (max-width: 992px) {
  .video-header-content.text-right {
  top: 20%;
  }
}

@media (max-width: 768px) {
.video-header-content.text-right {
    position: relative;
    text-align: center !important;
    left: 2%;
  }
 }

.video-header SPAN, .video-header P, .video-header H1, .video-header H2, .video-header H3, .video-header H4, .video-header H5, .video-header H6 {
  color: #fff
}

/* 
#OK - play button adjustment on mobile video header interior
*/ 
@media (max-width: 768px) {
  .video-header .video-control {
    /*display: none; VP set - Now have play on mobile */
    bottom: 40px !important;
    right: 8% !important; 
  }
}
@media (min-width: 768px) {
  .video-header .video-control {
    bottom: 25px !important;
  }
}
@media (min-width: 1200px) {
  .video-header .video-control {
    bottom: 25px !important;
  }
}


/**  #OK - carousel-header-wrapper Section **/

.carousel-header-wrapper {
  position: relative;
}

/*  #OK - cuts off image (possible content)t at bottom for ATT slideshow  */
.carousel-header-wrapper DIV.homepage-banner {
  min-height: auto;
  max-height: 65vh;
  overflow: hidden;
} 

/*  #OK - slider overlay content modifications  */

.carousel-header-wrapper .btn-outline-secondary {
  color: #fff;
}

.carousel-header-wrapper .slide-container  {
  position: absolute;
  top: 20%;
}

.carousel-header-wrapper .container.slide-container.aos-init.aos-animate {
    width: 60%;
}

.carousel-header-wrapper P.size-36 {
  width: 70%;
}

/* OK - modifie Queries to Slider image - Takes out zoom and adjusts image size at breakpoints */

@media (max-width: 1920px) {
  .carousel-header-wrapper .slide .banner-image {
    min-height: 615px;
  }
}

@media (max-width: 1600px) {
  .carousel-header-wrapper .container.slide-container.aos-init.aos-animate {
    width: 70%;
  }
}

@media (max-width: 1200px) {
  .carousel-header-wrapper .container.slide-container.aos-init.aos-animate {
    width: 80%;
  }
}

@media (max-width: 992px) {
  .carousel-header-wrapper .slide .banner-image {
    min-height: 350px;
  }
  .carousel-header-wrapper .slide-container  {
  top: 10%;
  }
  .carousel-header-wrapper SPAN.description {
    line-height: 1.2;
  }
  .carousel-header-wrapper SPAN.description H3 {
     line-height: 1;
   }
  .size-56 {
    font-size: 24px !important;  
  }
  .size-36 { 
    font-size: 18px !important;
  }
}

@media (max-width: 768px) {
  .carousel-header-wrapper .slide .banner-image {
    min-height: 65px;
  }
  .carousel-header-wrapper .slide-container  {
     position:relative
  }
  .carousel-header-wrapper .slide .slide-content {
  padding: 4px 14px 4px 14px ;
  }
  .carousel-header-wrapper .container.slide-container.aos-init.aos-animate {
    width: 100%;
  }
   .carousel-header-wrapper .slide .btn-outline-primary:hover {
    font-size: 18px;
    background: var(--ung-gold);
    color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
  }
  .carousel-header-wrapper DIV.homepage-banner {
    max-height: 68vh;
  } 
  .carousel-header-wrapper P.size-36 {
  width: 100%;
  }
}

.degree-card-wrapper {
  background: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 0 30px 0;
  position: relative;
}
@media (min-width: 768px) {
  .degree-card-wrapper {
    padding: 20px 40px 50px 40px;
  }
}
@media (min-width: 768px) {
  .degree-card-wrapper::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 20px;
    bottom: 100px;
    left: 50%;
    border-left: 1px solid #C4C4C4;
    transform: translate(-50%);
  }
}

/* #OK - News Article */

.news-article .row:first-of-type {
  padding: 0;
}

.news-article BLOCKQUOTE {
  margin-top: 1.1rem;
}
.news-article .row {
  padding: .5rem 0;
}
.news-article .card-body SPAN {
    padding: 1rem 0;
}

.news-article .card {
  margin-bottom: .5rem;
}

.news-article FIGCAPTION.video-caption {
  padding-top: 1rem;
}

.news-article UL, .news-article OL {
  margin-top: .8rem;
}

/* #OK - W.I.L.  - */

.where-i-lead-card-wrapper {
  background: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 0 30px 0;
  position: relative;
}
@media (min-width: 768px) {
  .where-i-lead-card-wrapper {
    padding: 20px 40px 50px 40px;
  }
}

/* -#OK Remove later
@media (min-width: 768px) {
  .where-i-lead-card-wrapper::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 20px;
    bottom: 100px;
    left: 34.2%;
    right: 35.2%;
    border-left: 1px solid #C4C4C4;
    border-right: 1px solid #C4C4C4;
    transform: translate(-0%);
  }
}
*/
/* #JET - Experts - */
 .expert-card-wrapper {
   background: #fff;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   width: 100%;
   margin-bottom: 20px;
   padding: 0 0 30px 0;
   position: relative;
}
 @media (min-width: 768px) {
   .expert-card-wrapper {
     padding: 20px 40px 50px 40px;
  }
}
/* */
.program-listing-page .degree-program-card {
  border: 0 !important;
  background: transparent;
  flex: 100%;
  max-width: 100%;
  border-bottom: 1px solid #000;
  border-radius: 0;
  margin: 10px 20px;
}
.program-listing-page .degree-program-card:hover {
  border: 0 !important;
  box-shadow: none;
}
@media (min-width: 768px) {
  .program-listing-page .degree-program-card {
    flex: calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}
.program-listing-page .degree-program-card .card-title {
  font-size: 24px !important;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .program-listing-page .degree-program-card .card-title {
    padding-right: 50px;
  }
}
.program-listing-page .degree-program-card .card-title:hover {
  color: #0056b3 !important;
}
.program-listing-page .degree-program-card .card-body {
  padding: 0 0 20px 0;
  border-bottom: 2px solid #707070;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .program-listing-page .degree-program-card .card-body {
    padding: 0 0 40px 0;
  }
}
.program-listing-page .degree-program-card .card-body .request-info-link {
  text-decoration: none !important;
}
.program-listing-page .degree-program-card .location-text {
  line-height: 24px;
  font-size: 16px;
  margin: 0 0 20px 0;
  padding: 0;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  display: block;
}
.program-listing-page .degree-program-card .request-info-link {
  border: 0 !important;
  padding-top: 11px;
  padding-bottom: 11px;
}
@media (min-width: 768px) {
  .program-listing-page .degree-program-card .request-info-link {
    display: inline-block;
  }
}
@media (max-width: 767.98px) {
  .program-listing-page .degree-program-card .request-info-link {
    display: none;
  }
}
.program-listing-page .degree-program-card .request-info-link:hover {
  color: var(--dark-blue);
  /*background-image: linear-gradient(90deg, var(--ung-gold) 50%, var(--dark-blue) 50%); VP - off hover on request info btn mobile */
}
.program-listing-page .degree-program-card .request-info-link:focus {
  /* background: var(--ung-gold); */
  color: var(--dark-blue);
}
.program-listing-page .degree-program-card .ril-m {
  display: none;
}
@media (max-width: 767.98px) {
  .program-listing-page .degree-program-card .ril-m {
    display: block;
    position: absolute;
    width: 100%;
    left: 0px;
    margin-top: -77px;
  }
}
.program-listing-page .degree-program-card .ril-m .request-info-link {
  display: block;
}
.program-listing-page .degree-program-card .btn-expander {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  padding-top: 5px;
  background: var(--lite-gray);
  color: var(--ung-blue);
  border: 1px solid #676767;
  float: right;
  margin-top: 16px; /* #OK - position +- button with link */
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 767.98px) {
  .program-listing-page .degree-program-card .btn-expander {
    position: absolute;
    right: 0;
    margin-top: -69px; 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
/* #OK - btn-hide class - hides expand button for degree info on desktop */
@media (min-width: 768px) {
    
  .program-listing-page .degree-program-card .btn-expander.btn-hide {
    display: none;
  }
}
.program-listing-page .degree-program-card .exp {
  display: none;
}
.program-listing-page .degree-program-card .coll {
  display: inline-block;
}
.program-listing-page .degree-program-card .collapsed .exp {
  display: inline-block;
}
.program-listing-page .degree-program-card .collapsed .coll {
  display: none;
}
.program-listing-page .degree-program-card .card-text {
  background: var(--dark-gray);
  margin-top: 20px;
  padding: 20px 10px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}
.program-listing-page .degree-program-card .card-text A {
  text-decoration: underline;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .program-listing-page .degree-program-card .card-text {
    margin-top: 70px;
  }
}

/* #OK - Where I Lead - Filter Listings - */

.where-i-lead-listing-page .degree-program-card {
  border: 0 !important;
  background: transparent;
  flex: 100%;
  max-width: 100%;
  border-bottom: 1px solid #000;
  border-radius: 0;
  margin: 10px 20px;
}
.where-i-lead-listing-page .degree-program-card:hover {
  border: 0 !important;
  box-shadow: none;
}
@media (min-width: 768px) {
  .where-i-lead-listing-page .degree-program-card {
    flex: calc(33% - 40px);
    max-width: calc(33% - 40px);
  }
}
.where-i-lead-listing-page .degree-program-card .card-title {
  font-size: 24px !important;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18  */
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .degree-program-card .card-title {
    padding-right: 50px;
  }
}
.where-i-lead-listing-page .degree-program-card .card-title:hover {
  color: #0056b3 !important;
}
.where-i-lead-listing-page .degree-program-card .card-body {
  padding: 0 0 20px 0;
  border-bottom: 2px solid #707070;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .where-i-lead-listing-page .degree-program-card .card-body {
    padding: 0 0 40px 0;
  }
}
.where-i-lead-listing-page .degree-program-card .card-body .request-info-link {
  text-decoration: none !important;
}
.where-i-lead-listing-page .degree-program-card .location-text {
  line-height: 24px;
  font-size: 16px;
  margin: 0 0 20px 0;
  padding: 0;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  display: block;
}
.where-i-lead-listing-page .degree-program-card .request-info-link {
  border: 0 !important;
  padding-top: 11px;
  padding-bottom: 11px;
}
@media (min-width: 768px) {
  .where-i-lead-listing-page .degree-program-card .request-info-link {
    display: inline-block;
  }
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .degree-program-card .request-info-link {
    display: none;
  }
}
.where-i-lead-listing-page .degree-program-card .request-info-link:hover {
  color: var(--dark-blue);
  /*background-image: linear-gradient(90deg, var(--ung-gold) 50%, var(--dark-blue) 50%); VP - off hover on request info btn mobile */
}
.where-i-lead-listing-page .degree-program-card .request-info-link:focus {
  background: var(--ung-gold);
  color: var(--dark-blue);
}
.where-i-lead-listing-page .degree-program-card .ril-m {
  display: none;
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .degree-program-card .ril-m {
    display: block;
    position: absolute;
    width: 100%;
    left: 0px;
    margin-top: -77px;
  }
}
.where-i-lead-listing-page .degree-program-card .ril-m .request-info-link {
  display: block;
}
.where-i-lead-listing-page .degree-program-card .btn-expander {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  padding-top: 5px;
  background: var(--lite-gray);
  color: var(--ung-blue);
  border: 1px solid #676767;
  float: right;
  margin-top: -16px; /* #OK - position +- button with link */
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .degree-program-card .btn-expander {
    position: absolute;
    right: 0;
    margin-top: -69px; 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
/* #OK - btn-hide class - hides expand button for degree info on desktop */
@media (min-width: 768px) {
    
  .where-i-lead-listing-page .degree-program-card .btn-expander.btn-hide {
    display: none;
  }
}
.where-i-lead-listing-page .degree-program-card .exp {
  display: none;
}
.where-i-lead-listing-page .degree-program-card .coll {
  display: inline-block;
}
.where-i-lead-listing-page .degree-program-card .collapsed .exp {
  display: inline-block;
}
.where-i-lead-listing-page .degree-program-card .collapsed .coll {
  display: none;
}
.where-i-lead-listing-page .degree-program-card .card-text {
  background: var(--dark-gray);
  margin-top: 54px;
  padding: 20px 10px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}
.where-i-lead-listing-page .degree-program-card .card-text A {
  text-decoration: underline;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .degree-program-card .card-text {
    margin-top: 70px;
  }
}

/* #JET - Experts - Filter Listings - */
 .expert-listing-page .degree-program-card {
   border: 0 !important;
   background: transparent;
   flex: 100%;
   max-width: 100%;
   border-bottom: 1px solid #000;
   border-radius: 0;
   margin: 10px 20px;
}
 .expert-listing-page .degree-program-card:hover {
   border: 0 !important;
   box-shadow: none;
}
 @media (min-width: 768px) {
   .expert-listing-page .degree-program-card {
     flex: calc(33% - 40px);
     max-width: calc(33% - 40px);
  }
}
 .expert-listing-page .degree-program-card .card-title {
   font-size: 24px !important;
   color: var(--ung-blue);
   font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
   font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
   text-decoration: underline;
}
 @media (max-width: 767.98px) {
   .expert-listing-page .degree-program-card .card-title {
     padding-right: 50px;
  }
}
 .expert-listing-page .degree-program-card .card-title:hover {
   color: #0056b3 !important;
}
 .expert-listing-page .degree-program-card .card-body {
   padding: 0 0 20px 0;
   border-bottom: 2px solid #707070;
   padding-left: 0;
   padding-right: 0;
}
 @media (min-width: 768px) {
   .expert-listing-page .degree-program-card .card-body {
     padding: 0 0 40px 0;
  }
}
 .expert-listing-page .degree-program-card .card-body .request-info-link {
   text-decoration: none !important;
}
 .expert-listing-page .degree-program-card .location-text {
   line-height: 24px;
   font-size: 16px;
   margin: 0 0 20px 0;
   padding: 0;
   font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
   display: block;
}
 .expert-listing-page .degree-program-card .request-info-link {
   border: 0 !important;
   padding-top: 11px;
   padding-bottom: 11px;
}
 @media (min-width: 768px) {
   .expert-listing-page .degree-program-card .request-info-link {
     display: inline-block;
  }
}
 @media (max-width: 767.98px) {
   .expert-listing-page .degree-program-card .request-info-link {
     display: none;
  }
}
 .expert-listing-page .degree-program-card .request-info-link:hover {
   color: var(--dark-blue);
  /*background-image: linear-gradient(90deg, var(--ung-gold) 50%, var(--dark-blue) 50%);
   VP - off hover on request info btn mobile */
}
 .expert-listing-page .degree-program-card .request-info-link:focus {
   background: var(--ung-gold);
   color: var(--dark-blue);
}
 .expert-listing-page .degree-program-card .ril-m {
   display: none;
}
 @media (max-width: 767.98px) {
   .expert-listing-page .degree-program-card .ril-m {
     display: block;
     position: absolute;
     width: 100%;
     left: 0px;
     margin-top: -77px;
  }
}
 .expert-listing-page .degree-program-card .ril-m .request-info-link {
   display: block;
}
 .expert-listing-page .degree-program-card .btn-expander {
   display: inline-block;
   width: 34px;
   height: 34px;
   text-align: center;
   padding-top: 5px;
   background: var(--lite-gray);
   color: var(--ung-blue);
   border: 1px solid #676767;
   float: right;
   margin-top: -16px;
  /* #OK - position +- button with link */
   cursor: pointer;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}
 @media (max-width: 767.98px) {
   .expert-listing-page .degree-program-card .btn-expander {
     position: absolute;
     right: 0;
     margin-top: -69px;
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
  }
}
/* #OK - btn-hide class - hides expand button for degree info on desktop */
 @media (min-width: 768px) {
   .expert-listing-page .degree-program-card .btn-expander.btn-hide {
     display: none;
  }
}
 .expert-listing-page .degree-program-card .exp {
   display: none;
}
 .expert-listing-page .degree-program-card .coll {
   display: inline-block;
}
 .expert-listing-page .degree-program-card .collapsed .exp {
   display: inline-block;
}
 .expert-listing-page .degree-program-card .collapsed .coll {
   display: none;
}
 .expert-listing-page .degree-program-card .card-text {
   background: var(--dark-gray);
   margin-top: 54px;
   padding: 20px 10px;
   font-family: var(--baseSansFont);
}
 .expert-listing-page .degree-program-card .card-text A {
   text-decoration: underline;
   color: var(--ung-blue);
   font-family: var(--baseSansFont);
   font-size: 18px;
}
 @media (max-width: 767.98px) {
   .expert-listing-page .degree-program-card .card-text {
     margin-top: 70px;
  }
}
/* */

.filter-container LABEL {
  text-transform: capitalize;
}
.filter-container .filter-by-text {
  color: #fff;
  font-size: 16px;
  font-family: var(--baseSansFont); /* Was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  margin-bottom: 20px;
}
.filter-container .filter-menu {
  background: var(--ung-blue);
  padding: 0;
  margin: 20px 0;
}
@media (min-width: 992px) {
  .filter-container .filter-menu {
    padding: 0 0 0 30px;
  }
}
.filter-container .filter-metrics {
  display: inline !important;
}
@media (min-width: 768px) {
  .filter-container .filter-metrics {
    margin-left: 10px;
  }
}
.filter-container .filter-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.filter-container .filter-row .filter-col {
  flex: 100%;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .filter-container .filter-row .filter-col {
    flex: 1 0 auto;
    margin: 0 8px;
  }
}
@media (min-width: 768px) {
  .filter-container .filter-row .search-filter {
    width: 300px;
  }
}
.filter-container .filtered-metric {
  color: #fff;
  border: 2px solid #fff;
  padding: 6px 30px 6px 16px;
  border-radius: 40px;
  min-width: 130px;
  display: inline;
  font-size: 13px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  background: transparent;
  text-align: left;
  margin: 10px 10px 10px 0px;
  position: relative;
  text-transform: capitalize;
}
.filter-container .filtered-metric::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\F00D";
  position: absolute;
  top: 5px;
  right: 10px;
}
.filter-container .search-btn {
  background: var(--ung-gold);
  color: var(--ung-blue);
  border: 0;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
.filter-container .input-group-append {
  margin-left: 0;
  align-items: stretch;
  justify-content: center;
}
.filter-container .search-box {
  border: 0 !important;
}

.program-listing-page .no-results {
  display: none;
}
.program-listing-page .mixitup-container-failed .no-results {
  display: block;
}
.program-listing-page .dropdown-custom.dropdown .dropdown-menu {
  width: 100%;
  min-width: 100%;
}
.program-listing-page .dropdown-custom:hover > .dropdown-menu {
  display: block;
  top: 31px !important;
}
@media (max-width: 767.98px) {
  .program-listing-page .dropdown-custom:hover > .dropdown-menu {
    top: 35px !important;
  }
}
.program-listing-page .dropdown-custom > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}
.program-listing-page .form-control {
  height: 37px;
}
@media (max-width: 991.98px) {
  .program-listing-page .filter-metrics {
    padding-left: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .program-listing-page .btn-clear-filters {
    padding-left: 25px;
  }
}
@media (max-width: 767.98px) {
  .program-listing-page .btn-clear-filters {
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .program-listing-page .filter-row .filter-col:nth-of-type(3) {
    padding-right: 25px;
  }
}
@media (max-width: 767.98px) {
  .program-listing-page .filter-row .filter-col:nth-of-type(3) {
    padding: 0 !important;
  }
}
.program-listing-page .filter-row .filter-col:first-child:before {
  content: "Filter Programs";
  display: block;
  position: absolute;
  color: white;
  margin-top: -30px;
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}
@media (max-width: 991.98px) {
  .program-listing-page .filter-row .filter-col:first-child {
    padding-left: 25px;
  }
}
@media (max-width: 767.98px) {
  .program-listing-page .filter-row .filter-col:first-child {
    padding: 50px 0 0 !important;
  }
}
@media (max-width: 767.98px) {
  .program-listing-page .filter-row {
    padding: 10px 25px !important;
  }
}
.program-listing-page .filter-row .filter-col {
  padding-top: 39px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .program-listing-page .filter-row .filter-col {
    padding: 0 !important;
  }
}

/* #OK - Styleing Only Search Degree Filter */

.program-listing-page .filter-only-search.filter-no-summary .filter-row .search-filter {
  padding: 0px 70px 0px 30px;
  background: var(--ung-blue);
  margin: 0 0 0 0px !important;
  position: relative;
  top: 36px;
  border-left: none;
}

.program-listing-page .filter-row .search-filter {
  padding: 39px 30px 10px 30px;
  background: var(--dark-blue);
  margin: 0 0 0 25px !important;
  border-left: 1px solid white;
}

.program-listing-page .filter-only-search.filter-no-summary .filter-row .search-filter:before {
  content: "Search Programs";
  display: block;
  position: absolute;
  font-size: 14px;
  color: white;
  margin-top: -30px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}

.program-listing-page .filter-row .search-filter:before {
  content: "Or Search Programs";
  display: block;
  position: absolute;
  font-size: 14px;
  color: white;
  margin-top: -30px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}
@media (max-width: 991.98px) {
  .program-listing-page .filter-row .search-filter {
    margin-left: 0 !important;
    margin-top: 15px !important;
    background: var(--ung-blue);
    border-left: 0;
  }
}
@media (max-width: 767.98px) {
  .program-listing-page .filter-row .search-filter {
    padding: 0 !important;
    margin-top: 30px !important;
  }
}

/* #OK - where-i-lead-listing-page replicate program-listing-page */

.where-i-lead-listing-page .no-results {
  display: none;
}
.where-i-lead-listing-page .mixitup-container-failed .no-results {
  display: block;
}
.where-i-lead-listing-page .dropdown-custom.dropdown .dropdown-menu {
  width: 100%;
  min-width: 100%;
}
.where-i-lead-listing-page .dropdown-custom:hover > .dropdown-menu {
  display: block;
  top: 31px !important;
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .dropdown-custom:hover > .dropdown-menu {
    top: 35px !important;
  }
}
.where-i-lead-listing-page .dropdown-custom > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}
.where-i-lead-listing-page .form-control {
  height: 37px;
}
@media (max-width: 991.98px) {
  .where-i-lead-listing-page .filter-metrics {
    padding-left: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .where-i-lead-listing-page .btn-clear-filters {
    padding-left: 25px;
  }
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .btn-clear-filters {
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .where-i-lead-listing-page .filter-row .filter-col:nth-of-type(3) {
    padding-right: 25px;
  }
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .filter-row .filter-col:nth-of-type(3) {
    padding: 0 !important;
  }
}
.where-i-lead-listing-page .filter-row .filter-col:first-child:before {
  content: "Filter Where I Lead";
  display: block;
  position: absolute;
  color: white;
  margin-top: -30px;
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}
@media (max-width: 991.98px) {
  .where-i-lead-listing-page .filter-row .filter-col:first-child {
    padding-left: 25px;
  }
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .filter-row .filter-col:first-child {
    padding: 50px 0 0 !important;
  }
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .filter-row {
    padding: 10px 25px !important;
  }
}
.where-i-lead-listing-page .filter-row .filter-col {
  padding-top: 39px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .filter-row .filter-col {
    padding: 0 !important;
  }
}
.where-i-lead-listing-page .filter-row .search-filter {
  padding: 39px 30px 10px 30px;
  background: var(--dark-blue);
  margin: 0 0 0 25px !important;
  border-left: 1px solid white;
}
.where-i-lead-listing-page .filter-row .search-filter:before {
  content: "Or Search Where I Lead";
  display: block;
  position: absolute;
  font-size: 14px;
  color: white;
  margin-top: -30px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}
@media (max-width: 991.98px) {
  .where-i-lead-listing-page .filter-row .search-filter {
    margin-left: 0 !important;
    margin-top: 15px !important;
    background: var(--ung-blue);
    border-left: 0;
  }
}
@media (max-width: 767.98px) {
  .where-i-lead-listing-page .filter-row .search-filter {
    padding: 0 !important;
    margin-top: 30px !important;
  }
}
/* #JET - expert-listing-page replicate where-i-lead-listing-page */
 .expert-listing-page .no-results {
   display: none;
}
 .expert-listing-page .mixitup-container-failed .no-results {
   display: block;
}
 .expert-listing-page .dropdown-custom.dropdown .dropdown-menu {
   width: 100%;
   min-width: 100%;
}
 .expert-listing-page .dropdown-custom:hover > .dropdown-menu {
   display: block;
   top: 31px !important;
}
 @media (max-width: 767.98px) {
   .expert-listing-page .dropdown-custom:hover > .dropdown-menu {
     top: 35px !important;
  }
}
 .expert-listing-page .dropdown-custom > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
   pointer-events: none;
}
 .expert-listing-page .form-control {
   height: 37px;
}
 @media (max-width: 991.98px) {
   .expert-listing-page .filter-metrics {
     padding-left: 25px;
  }
}
 @media (min-width: 768px) and (max-width: 991.98px) {
   .expert-listing-page .btn-clear-filters {
     padding-left: 25px;
  }
}
 @media (max-width: 767.98px) {
   .expert-listing-page .btn-clear-filters {
     padding-bottom: 0;
  }
}
 @media (max-width: 991.98px) {
   .expert-listing-page .filter-row .filter-col:nth-of-type(3) {
     padding-right: 25px;
  }
}
 @media (max-width: 767.98px) {
   .expert-listing-page .filter-row .filter-col:nth-of-type(3) {
     padding: 0 !important;
  }
}
 .expert-listing-page .filter-row .filter-col:first-child:before {
   content: "Filter Experts";
   display: block;
   position: absolute;
   color: white;
   margin-top: -30px;
   font-size: 14px;
   font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
   font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}
 @media (max-width: 991.98px) {
   .expert-listing-page .filter-row .filter-col:first-child {
     padding-left: 25px;
  }
}
 @media (max-width: 767.98px) {
   .expert-listing-page .filter-row .filter-col:first-child {
     padding: 50px 0 0 !important;
  }
}
 @media (max-width: 767.98px) {
   .expert-listing-page .filter-row {
     padding: 10px 25px !important;
  }
}
 .expert-listing-page .filter-row .filter-col {
   padding-top: 39px;
   margin-bottom: 20px;
}
 @media (max-width: 767.98px) {
   .expert-listing-page .filter-row .filter-col {
     padding: 0 !important;
  }
}
 .expert-listing-page .filter-row .search-filter {
   padding: 39px 30px 10px 30px;
   background: var(--dark-blue);
   margin: 0 0 0 25px !important;
   border-left: 1px solid white;
}
 .expert-listing-page .filter-row .search-filter:before {
   content: "Or Search Experts";
   display: block;
   position: absolute;
   font-size: 14px;
   color: white;
   margin-top: -30px;
   font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
   font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}
 @media (max-width: 991.98px) {
   .expert-listing-page .filter-row .search-filter {
     margin-left: 0 !important;
     margin-top: 15px !important;
     background: var(--ung-blue);
     border-left: 0;
  }
}
 @media (max-width: 767.98px) {
   .expert-listing-page .filter-row .search-filter {
     padding: 0 !important;
     margin-top: 30px !important;
  }
}
/* */

.breadcrumbs {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  background: none;
}
@media (min-width: 768px) {
  .breadcrumbs {
    display: block;
  }
}
.breadcrumbs .breadcrumb {
  background: none;
  margin: 0;
  padding: 10px 10px 10px 0;
  font-size: 12px;
}
.breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.3rem;
  color: #707070;
  content: ">";
}
.breadcrumbs .breadcrumb-item + .breadcrumb-item::before A {
  color: #707070;
}
.breadcrumbs .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.3rem;
}
.breadcrumbs .breadcrumb-item.active {
  color: #023F65;
}
.breadcrumbs .breadcrumb-item.active A {
  color: #023F65;
}

.title-wrapper H1, .title-wrapper H2, .title-wrapper H3, .title-wrapper H4, .title-wrapper H5, .title-wrapper H6 {
  font-size: 32px;
  text-align: center;
  padding: 20px 20px 0px 20px;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
}
@media (min-width: 768px) {
  .title-wrapper H1, .title-wrapper H2, .title-wrapper H3, .title-wrapper H4, .title-wrapper H5, .title-wrapper H6 {
    font-size: 48px;
    text-align: left;
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .title-wrapper H1, .title-wrapper H2, .title-wrapper H3, .title-wrapper H4, .title-wrapper H5, .title-wrapper H6 {
    padding: 0;
  }
}
.title-wrapper .page-title-subtext {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}

ASIDE.sidebar .widget {
  margin: 30px 0;
}

/*JET - Removed '.sidebar ' from these so they work everywhere*/
.noteworthy-card {
  background: transparent;
  border: 0 !important;
}
.noteworthy-card:hover {
  border: 0 !important;
  box-shadow: none;
}
.noteworthy-card A:hover .caption {
  text-decoration: underline;
}
/*JET - Removed '.noteworthy-card ' from these so they work everywhere*/
.noteworthy-title-wrap {
  margin: 10px 0 20px 0;
  padding: 0;
  border-bottom: 1px solid var(--ung-blue);
}
.noteworthy-title-wrap .card-title {
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  color: #fff;
  background: var(--ung-blue);
  text-align: left;
  margin: 0;
  padding: 7px;
  display: inline-block;
}
.noteworthy-card .img-wrap {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  padding-bottom: 56.2%;
}
.noteworthy-card .img-wrap:hover IMG {
  transform: scale(1.2);
}
.noteworthy-card .img-wrap .caption {
  position: absolute;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding: 0 5px 5px 10px;
  font-size: 16px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  z-index: 10;
}
.noteworthy-card .img-wrap IMG {
  border-radius: 0;
  transition: transform 0.3s ease;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.noteworthy-card .img-wrap .overlay {
  z-index: 2;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 63%, rgba(0, 0, 0, 0.95) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}
.noteworthy-card .list-group-item {
  background: none;
  border: 0;
  padding: 7px 0;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  text-decoration: underline;
  font-size: 16px;
}
.noteworthy-card .list-group-item:hover {
  color: #034ACF;
}
.noteworthy-card .list-group-item:visited {
  color: #455674;
}

.search-news-widget {
  background: var(--ung-blue);
  padding: 10px;
  margin-top: 0 !important;
}
.search-news-widget .widget-title {
  color: #fff;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  font-size: 24px;
  text-align: center;
}
.search-news-widget .input-group-text {
  border: 0;
  border-radius: 0;
  background: var(--ung-gold);
}
.search-news-widget .input-group-text I {
  color: var(--ung-blue);
}
.search-news-widget .form-control {
  border: 0;
  font-size: 14px;
  color: #676767;
  font-style: italic;
}

.widget.social-media .widget-title {
  background: var(--ung-blue);
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  text-align: center;
  padding: 9px 0;
}
.widget.social-media .social-icons I {
  width: 42px;
  height: 42px;
  padding: 9px;
  font-size: 20px;
}
.widget.social-media .social-icons .m-logo {
  background-size: 24px;
}
.widget.social-media .social-icons A {
  margin: 0 7px 5px;
}

#get-connected .m-logo {
  height: 50px;
  width: 50px;
}

.filter-title {
  color: #272727;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  font-size: 16px;
}

.directory-staff-filter {
  background-color: var(--ung-blue);
  padding: 20px 0;
  color: white;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
}

.directory-staff-filter #SearchComponentForm .form-control{ border: 0 }

.directory-staff-filter #SearchComponentForm .form-control::-moz-placeholder.directory-staff-filter #SearchComponentForm .form-control:-ms-input-placeholder,
.directory-staff-filter #SearchComponentForm .form-control::-ms-input-placeholder,.directory-staff-filter #SearchComponentForm .form-control::placeholder {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: normal;
  font-style: italic;
  font-size: 14px;
}

.directory-staff-filter #SearchComponentForm .input-group-text {
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--ung-gold) !important;
}
.directory-staff-filter LABEL.select SELECT {
  padding-left: 15px;
}

.alpha-filter #filter-last-name {
  border: 2px solid black;
}
.alpha-filter .btn {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: normal;
  font-size: 20px;
  padding: 0;
}
.alpha-filter .btn.active {
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  text-decoration: underline;
  color: var(--dark-blue);
}

.tablesaw.table-lbluehead-altbkgd THEAD {
  background-color: var(--lite-blue);
}
.tablesaw.table-lbluehead-altbkgd THEAD .alt {
  background-color: var(--lite-blue);
}
.tablesaw.table-lbluehead-altbkgd .tablesaw-sortable-btn {
  color: var(--ung-blue);
}

.tablesaw {
  background: #fff;
}
.tablesaw THEAD {
  background-color: var(--ung-blue);
  color: white;
}
.tablesaw THEAD .tablesaw-sortable-btn {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-size: 17px;
}
.tablesaw THEAD .alt {
  background-color: var(--ung-blue);
}
.tablesaw THEAD .tablesaw-sortable-head .tablesaw-sortable-arrow:after {
  content: "\F0DC";
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  padding-left: 14px;
}
.tablesaw THEAD .tablesaw-sortable-ascending .tablesaw-sortable-btn {
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
}
.tablesaw THEAD .tablesaw-sortable-ascending .tablesaw-sortable-btn {
  text-decoration: underline;
}
.tablesaw THEAD .tablesaw-sortable-ascending .tablesaw-sortable-arrow:after {
  content: "\F0DE" !important;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  padding-left: 14px;
  color: var(--ung-gold);
}
.tablesaw THEAD .tablesaw-sortable-descending .tablesaw-sortable-btn {
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
}
.tablesaw THEAD .tablesaw-sortable-descending .tablesaw-sortable-btn {
  text-decoration: underline;
}
.tablesaw THEAD .tablesaw-sortable-descending .tablesaw-sortable-arrow:after {
  content: "\F0DD" !important;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  padding-left: 14px;
  color: var(--ung-gold);
}
.tablesaw TR {
  border-bottom: 2px solid #707070;
}
.tablesaw TBODY TD {
  vertical-align: text-top;
  padding-top: 20px;
  padding-bottom: 20px;
}
.tablesaw TBODY TD A {
  text-decoration: underline;
}

.tablesaw-row-zebra TR:nth-child(2n) {
  background: var(--medium-gray);
}

.staff-directory-page, .department-directory-page {
  overflow-y: visible;
  overflow-x: hidden;
  /* padding: 83px 0 0 0; */
}
@media (max-width: 991.98px) {
  .staff-directory-page, .department-directory-page {
    padding: 50px 0 0 0;
  }
}

@media (max-width: 999px) {
  /* Table rows have a gray bottom stroke by default */
  .tablesaw-stack TBODY TR {
    width: 100%;
    border-bottom: 1px solid #dfdfdf;
    background: white;
  }

  .tablesaw-stack THEAD TD,
.tablesaw-stack THEAD TH {
    display: none;
  }

  .tablesaw-stack TBODY TD,
.tablesaw-stack TBODY TH {
    display: block;
    float: left;
    clear: left;
    width: 100%;
  }

  .tablesaw-cell-label {
    vertical-align: top;
  }

  .tablesaw-cell-content {
    display: inline-block;
    max-width: 95%;
  }

  .tablesaw-stack .tablesaw-stack-block .tablesaw-cell-label,
.tablesaw-stack .tablesaw-stack-block .tablesaw-cell-content {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .tablesaw-stack TD .tablesaw-cell-label,
.tablesaw-stack TH .tablesaw-cell-label {
    display: inline-block !important;
  }

  .tablesaw-stack TD:empty,
.tablesaw-stack TH:empty {
    display: none;
  }
  
/* OK - Allow headers for mobile stacking - Except staff-directory-page  */

  .tablesaw-stack TBODY TD .tablesaw-cell-label {
    /*display: none !important; */
  }
  
  .staff-directory-page .tablesaw-stack TBODY TD .tablesaw-cell-label {
    display: none !important;
  }
  
  .tablesaw-stack TBODY TR TD:nth-child(6) .tablesaw-cell-label {
    display: block !important;
  }

  .tablesaw-stack TBODY TR TD:nth-child(6) .tablesaw-cell-content A {
    display: inline-block !important;
  }

  .tablesaw-stack TBODY TR TD:nth-child(1) {
    font-weight: bold;
  }
  .tablesaw-stack TBODY TR TD:nth-child(1) P {
    margin-bottom: 0;
  }

  .tablesaw TBODY TD {
    padding: 8px 15px;
  }
}
@media (max-width: 999px) and (max-width: 767.98px) {
  .nav-tabs .nav-link {
    width: 154px;
  }
}
@media (max-width: 39.9375em) {
  .tablesaw-stack TBODY TR {
    display: table-row;
  }

  .tablesaw-stack TBODY TD .tablesaw-cell-label {
    width: 90%;
  }
}
@media (min-width: 1000px) {
  .tablesaw-stack TR {
    display: table-row;
  }

  /* Show the table header rows */
  .tablesaw-stack TD,
.tablesaw-stack TH,
.tablesaw-stack THEAD TD,
.tablesaw-stack THEAD TH {
    display: table-cell;
    margin: 0;
    vertical-align: text-top;
  }

  /* Hide the labels in each cell */
  .tablesaw-stack TD .tablesaw-cell-label,
.tablesaw-stack TH .tablesaw-cell-label {
    display: none !important;
  }

  .staff-directory-page .tablesaw-cell-content {
    border-left: 1px solid #cecece;
    display: block;
    padding-left: 10px;
    color: #000;
    font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
    /*font-weight: bold; adjusted with new adobe font | OK 2025/10/28 */
    font-size: 14px;
  }

  .tablesaw-stack TBODY TR TD:nth-child(1) .tablesaw-cell-content {
    border: 0;
  }
}

.nav-tabs {
  /* padding-top: 20px !important;  OK - takes out uneven tabs sitting slightly on top of border */
  /* border-bottom: 5px solid var(--teal); */
}

@media (max-width: 1169px) {
  .nav-tabs {
    display: flex;
  }
}
.nav-tabs .nav-link {
  text-align: center;
  line-height: 16px;
  font-size: 16px;
  padding-top: 24px;
  height: auto;
}
.nav-tabs .nav-link.active {
  padding-top: 24px;
}
@media (max-width: 768px) {
  .nav-tabs .nav-link {
    display: inline-block;
  }
}
@media (max-width: 767.98px) {
  .nav-tabs .nav-link {
    padding-left: 17px;
    padding-right: 17px;
    line-height: 13px;
  }
}
@media (max-width: 768px) {
  .nav-tabs .nav-item {
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .nav-tabs {
    padding-left: 0 !important;
    line-height: normal;
  }
}

.tablesaw-stack TR TD {
  white-space: normal;
  word-break: break-word;
}
.staff-directory-page .tablesaw-stack TR TD:nth-of-type(1) {
  min-width: 190px;
}
.tablesaw-stack TR TD:nth-of-type(6) A {
  display: block;
  margin-bottom: 9px;
  line-height: 18px;
}
.tablesaw-stack TR TD:nth-of-type(3) {
  white-space: nowrap;
}
.tablesaw-stack TR TD DIV {
  word-break: normal;
}


/* #OK - Table modifications */

.fs-listing-table .tablesaw-stack TR TD {
  word-break: normal;
}

/* #OK - Visually hidden - for SR 

@media (max-width: 992px) {
table.tbl-bh-alt.tablesaw-stack thead td,
table.tbl-bh-alt.tablesaw-stack thead th,
table.tbl-bh-hz.tablesaw-stack thead td,
table.tbl-bh-hz.tablesaw-stack thead th,
table.tbl-bh-all.tablesaw-stack thead td,
table.tbl-bh-all.tablesaw-stack thead th,
table.tbl-oh-alt.tablesaw-stack thead td,
table.tbl-oh-alt.tablesaw-stack thead th,
table.tbl-oh-hz.tablesaw-stack thead td,
table.tbl-oh-hz.tablesaw-stack thead th,
table.tbl-oh-all.tablesaw-stack thead td,
table.tbl-oh-all.tablesaw-stack thead td,
table.tbl-gh-alt.tablesaw-stack thead th,
table.tbl-gh-alt.tablesaw-stack thead td,
table.tbl-gh-hz.tablesaw-stack thead th,
table.tbl-gh-hz.tablesaw-stack thead td,
table.tbl-bh-all.tablesaw-stack thead td,
table.tbl-bh-all.tablesaw-stack thead th {
 position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; 
  height: 1px;
  overflow: hidden;
 }
}

*/
 
   /* #OK - override library value*/
  
  .tbl-bh-alt.tablesaw-stack TBODY TD .tablesaw-cell-label,
  .tbl-bh-hz.tablesaw-stack TBODY TD .tablesaw-cell-label,
  .tbl-bh-all.tablesaw-stack TBODY TD .tablesaw-cell-label,
  .tbl-oh-alt.tablesaw-stack TBODY TD .tablesaw-cell-label,
  .tbl-oh-hz.tablesaw-stack TBODY TD .tablesaw-cell-label,
  .tbl-oh-all.tablesaw-stack TBODY TD .tablesaw-cell-label,
  .tbl-gh-alt.tablesaw-stack TBODY TD .tablesaw-cell-label,
  .tbl-gh-hz.tablesaw-stack TBODY TD .tablesaw-cell-label {
    width: 32%;
  }
  
    .social.tbl-bh-alt.tablesaw-stack TBODY TD .tablesaw-cell-label {
    width: 62%;
  }
  
   .tbl-bh-alt.tablesaw-stack TH .tablesaw-cell-label,
   .tbl-bh-hz.tablesaw-stack TH .tablesaw-cell-label,
   .tbl-bh-all.tablesaw-stack TH .tablesaw-cell-label,
   .tbl-oh-alt.tablesaw-stack TH .tablesaw-cell-label,
   .tbl-oh-hz.tablesaw-stack TH .tablesaw-cell-label,
   .tbl-oh-all.tablesaw-stack TH .tablesaw-cell-label,
   .tbl-gh-alt.tablesaw-stack TH .tablesaw-cell-label,
   .tbl-gh-hz.tablesaw-stack TH .tablesaw-cell-label, 
   .tbl-gh-all.tablesaw-stack TH .tablesaw-cell-label {
   width: 40%;
 }


.tbl-bh-alt.tablesaw-stack TR TD:nth-of-type(1),
.tbl-bh-hz.tablesaw-stack TR TD:nth-of-type(1),
.tbl-bh-all.tablesaw-stack TR TD:nth-of-type(1),
.tbl-oh-alt.tablesaw-stack TR TD:nth-of-type(1),
.tbl-oh-hz.tablesaw-stack TR TD:nth-of-type(1),
.tbl-oh-all.tablesaw-stack TR TD:nth-of-type(1),
.tbl-gh-alt.tablesaw-stack TR TD:nth-of-type(1),
.tbl-gh-hz.tablesaw-stack TR TD:nth-of-type(1),
.tbl-gh-all.tablesaw-stack TR TD:nth-of-type(1) {
  /*min-width: 190px; - overrides VP min width set for directory */
  }
 

TABLE.tbl-bh-alt caption,
TABLE.tbl-bh-hz caption,
TABLE.tbl-bh-all caption,
TABLE.tbl-oh-alt caption,
TABLE.tbl-oh-hz caption,
TABLE.tbl-oh-all caption,
TABLE.tbl-gh-alt caption,
TABLE.tbl-gh-hz caption,
TABLE.tbl-gh-all caption
 {
    color: var(--body-text);
    caption-side: top ;
    text-align: center;
    border: 1px black solid;
        border-bottom: none;
    margin-bottom: -2px;
    background: #fff;
    font-style: italic;
}

TABLE.tbl-bh-alt,
TABLE.tbl-bh-hz,
TABLE.tbl-bh-all,
TABLE.tbl-oh-alt,
TABLE.tbl-oh-hz,
TABLE.tbl-oh-all,
TABLE.tbl-gh-alt,
TABLE.tbl-gh-hz,
TABLE.tbl-gh-all {
  table-layout:auto;
    width:100%;
    margin-bottom: 2rem;
}

TABLE.tbl-bh-alt .tablesaw-cell-content,
TABLE.tbl-bh-hz .tablesaw-cell-content,
TABLE.tbl-bh-all .tablesaw-cell-content,
TABLE.tbl-oh-alt .tablesaw-cell-content,
TABLE.tbl-oh-hz .tablesaw-cell-content,
TABLE.tbl-oh-all .tablesaw-cell-content,
TABLE.tbl-gh-alt .tablesaw-cell-content,
TABLE.tbl-gh-hz .tablesaw-cell-content,
TABLE.tbl-gh-all .tablesaw-cell-content {
    display: block;
    color: #000;
    font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
    font-weight: 400;
    font-size: 14px;
  }
  
  @media (max-width: 999px) {
    TABLE.tbl-bh-alt .tablesaw-cell-content,
    TABLE.tbl-bh-hz .tablesaw-cell-content,
    TABLE.tbl-bh-all .tablesaw-cell-content,
    TABLE.tbl-oh-alt .tablesaw-cell-content,
    TABLE.tbl-oh-hz .tablesaw-cell-content,
    TABLE.tbl-oh-all .tablesaw-cell-content,
    TABLE.tbl-gh-alt .tablesaw-cell-content,
    TABLE.tbl-gh-hz .tablesaw-cell-content,
    TABLE.tbl-gh-all .tablesaw-cell-content {
        display: inline-block;
  }
  
  .tablesaw-stack.tbl-bh-alt TBODY TR TD:nth-child(6) .tablesaw-cell-label,
  .tablesaw-stack.tbl-bh-hz TBODY TR TD:nth-child(6) .tablesaw-cell-label,
  .tablesaw-stack.tbl-bh-all TBODY TR TD:nth-child(6) .tablesaw-cell-label,
  .tablesaw-stack.tbl-oh-alt TBODY TR TD:nth-child(6) .tablesaw-cell-label,
  .tablesaw-stack.tbl-oh-hz TBODY TR TD:nth-child(6) .tablesaw-cell-label,
  .tablesaw-stack.tbl-oh-all TBODY TR TD:nth-child(6) .tablesaw-cell-label,
  .tablesaw-stack.tbl-gh-alt TBODY TR TD:nth-child(6) .tablesaw-cell-label,
  .tablesaw-stack.tbl-gh-hz TBODY TR TD:nth-child(6) .tablesaw-cell-label,
  .tablesaw-stack.tbl-gh-all TBODY TR TD:nth-child(6) .tablesaw-cell-label {
    display: inline-block !important;
  }
}

/* #OK - words don't break */
.tbl-bh-alt.tablesaw-stack TR TD,
.tbl-bh-hz.tablesaw-stack TR TD,
.tbl-bh-all.tablesaw-stack TR TD, 
.tbl-oh-alt.tablesaw-stack TR TD, 
.tbl-oh-hz.tablesaw-stack TR TD, 
.tbl-oh-all.tablesaw-stack TR TD, 
.tbl-gh-alt.tablesaw-stack TR TD, 
.tbl-gh-hz.tablesaw-stack TR TD,
.tbl-gh-all.tablesaw-stack TR TD   {
  white-space: normal;
  word-break: normal;
}

/* #OK - remove for wrapping in table cells */
TABLE.tbl-bh-alt.tablesaw-stack TR TD:nth-of-type(3), 
TABLE.tbl-bh-hz.tablesaw-stack TR TD:nth-of-type(3),
TABLE.tbl-bh-all.tablesaw-stack TR TD:nth-of-type(3), 
TABLE.tbl-oh-alt.tablesaw-stack TR TD:nth-of-type(3), 
TABLE.tbl-oh-hz.tablesaw-stack TR TD:nth-of-type(3), 
TABLE.tbl-oh-all.tablesaw-stack TR TD:nth-of-type(3), 
TABLE.tbl-gh-alt.tablesaw-stack TR TD:nth-of-type(3), 
TABLE.tbl-gh-hz.tablesaw-stack TR TD:nth-of-type(3), 
TABLE.tbl-gh-all.tablesaw-stack TR TD:nth-of-type(3) 
 {
     /* white-space: nowrap; */
}

.tbl-bh-all TD,
.tbl-oh-all TD,
.tbl-gh-all TD,
.tbl-bh-all TH,
.tbl-oh-all TH,
.tbl-gh-all TH
 {
     border: solid 1px #00000040;
}

.tbl-oh-alt TR:nth-child(2n), 
.tbl-bh-alt TR:nth-child(2n) {
  background: var(--medium-gray);
} 

.tablesaw.tbl-oh-alt THEAD,
 .tablesaw.tbl-oh-hz THEAD,
 .tablesaw.tbl-oh-all THEAD {
  background-color: transparent;
  color: var(--dark-blue);
}

.tablesaw.tbl-oh-alt,
.tablesaw.tbl-oh-hz,
.tablesaw.tbl-oh-all {
  background-color: transparent;
} 

.tablesaw.tbl-gh-alt THEAD,
.tablesaw.tbl-gh-hz THEAD,
.tablesaw.tbl-gh-all THEAD {
  background-color: var(--dark-gray);
  color: var(--dark-blue);
}

.tbl-gh-alt TH,
.tbl-gh-hz TH,
.tbl-gh-all TH {
  background-color: var(--dark-gray);
  color: var(--dark-blue);
  /*border: 1px solid var(--dark-blue); */
}

.tbl-gh-alt TR:nth-child(2n) {
  background: var(--dark-gray);
}


/* */

.staff-directory-page .nav-tabs, .department-directory-page .nav-tabs {
  display: flex !important;
}
.staff-directory-page .nav-tabs .nav-link, .department-directory-page .nav-tabs .nav-link {
  display: block !important;
  width: 135px !important;
  padding: 24px 20px 5px 20px !important;
}
.staff-directory-page .nav-tabs .nav-link.active, .department-directory-page .nav-tabs .nav-link.active {
  height: 100% !important;
  padding-top: 24px !important;
}
@media (max-width: 767.98px) {
  .staff-directory-page .nav-tabs .nav-link, .department-directory-page .nav-tabs .nav-link {
    padding-bottom: 15px !important;
    line-height: 16px;
  }
}
.staff-directory-page .nav-tabs .nav-item, .department-directory-page .nav-tabs .nav-item {
  width: auto !important;
}

.printOnly {
  display: none;
}

@media print {
  .printOnly {
    display: inline-block;
  }
}
.dir-accord .card-header:after {
  font-family: "Font Awesome 5 Free";
  content: "\F068";
  float: right;
  font-weight: 900;
  color: var(--dark-blue);
}
@media (max-width: 767.98px) {
  .dir-accord .card-header:after {
    border: 1px solid #979797;
    background: var(--lite-gray);
    padding: 2px 7px;
  }
}

.dir-accord .card-header.collapsed:after {
  content: "\F067";
}

.dir-accord .card {
  border: 0;
}
.dir-accord .card:hover {
  box-shadow: none;
  border: 0 !important;
}

.nota {
  color: #A0A0A0;
  cursor: text !important;
}
.notA:hover {
  color: #A0A0A0;
}

.department-directory-page .nav-tabs .nav-link, .staff-directory-page .nav-tabs .nav-link {
  min-width: 189px;
}
@media (max-width: 767.98px) {
  .department-directory-page .nav-tabs .nav-link, .staff-directory-page .nav-tabs .nav-link {
    min-width: 135px;
  }
}
.department-directory-page .no-results, .staff-directory-page .no-results {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  padding-top: 10px;
}

.department-grid {
  background: white;
  margin-bottom: 40px;
  padding-bottom: 10px;
}
.department-grid .alpha-section {
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  /* font-weight: bold; Skipped this acccomodation for the above font update because it looks better at normal weight. | EN - 2025/10/18 */
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 25px;
  margin-top: 40px;
}
.department-grid .row:nth-child(1) .alpha-section {
  margin-top: 10px;
}
.department-grid .card-header {
  border-bottom: 2px solid #707070;
  background: white;
  cursor: pointer;
}
.department-grid .card-header A {
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  color: var(--ung-blue);
  font-size: 15px;
  display: inline-block;
  max-width: 90%;
  margin-bottom: 0;
  margin-top: 4px;
  text-decoration: none !important;
}
.department-grid .card-body {
  background: var(--dark-gray);
  padding: 0;
}
.department-grid .card-body P {
  padding: 8px 25px 8px;
  border-bottom: 1px solid white;
  margin-bottom: 0;
}
.department-grid .card-body .d-website A {
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  text-decoration: underline;
  font-size: 14px;
}
.department-grid .card-body .d-location {
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}
.department-grid .card-body .d-location .d-location-name {
  display: block;
  color: var(--dark-blue);
}
.department-grid .card-body .d-location .d-location-phone {
  display: block;
}
.department-grid .card-body .d-location .d-location-email {
  display: block;
  text-decoration: underline;
}
.department-grid :target {
  display: block;
  position: relative;
  top: -30px;
  visibility: hidden;
}

.quiz-callout {
  display: inline-block;
  background: #022f87;
  background: linear-gradient(180deg, #022f87 0%, #001844 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#022f87",endColorstr="#001844",GradientType=1);
}

.quiz-callout .left {
  padding: 30px 40px;
  color: #fff;
}

@media (max-width: 768px) {
  .quiz-callout .left {
    padding-bottom: 0;
  }
}

.quiz-callout .left H1, .quiz-callout .left H2, .quiz-callout .left H3, .quiz-callout .left H4, .quiz-callout .left H5, .quiz-callout .left H6 {
  font-size: 22px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
  color: white;
}

.quiz-callout .left P{ font-family: var(--baseSansFont) } /* was: Gotham Book | EN - 2025/10/18 */ 

@media (max-width: 768px) {
  .quiz-callout .left P { display: none }
}

@media (min-width: 768px) {
  .quiz-callout .right {
    background: linear-gradient(to right, transparent 20%, black 100%), url("/_uploads/images/2021/temp/quiz-callout-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.quiz-callout .right .inner { margin: 0 }

@media (min-width: 768px) {
  .quiz-callout .right .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 90px);
  }
}

.quiz-callout .right .inner .btn { float: right }

@media (max-width: 768px) {
  .quiz-callout .right .inner .btn {
    max-width: 240px;
    margin: 0 0 30px 26px;
    float: left;
  }
}

.alert-wrapper {
  position: relative;
  z-index: 9;
}

.alert-wrapper .row .alert-body A {
  text-decoration: underline;
}

.alert-wrapper .row .alert-body A:hover {
  text-decoration: none;
}

/* critical bg */
.alert-wrapper.urgent {
  background-color: var(--ung-gold);
}

.alert-wrapper.alert-critical {
  background-color: var(--ung-gold);
}

/* regular bg */
.alert-wrapper.alert-regular {
  background-color: #fff;
}

/* winter bg*/
.alert-wrapper.alert-winter {
  background-color: var(--teal);
}

/* #OK - remove later? */
.alertnotice.urgent {
  background-color: var(--dark-gold);
}

.alertnotice.urgent {
  background-color: var(--dark-gold);
}
.alertnotice .toggle-box {
  display: none;
}

/* #OK - different alert settings - queries */

.alertnotice .alert-critical, .alertnotice .alert-winter, .alertnotice .alert-regular {
  text-transform: capitalize;
  font-size: 19px;
}

@media (min-width: 768px) {
  .alertnotice .alert-regular {
    padding-left: 48px;
  }
}
@media (max-width: 767.98px) {
   .alertnotice .alert-regular {
    padding-left: 18px;
  }
}

@media (min-width: 768px) {
  .alertnotice .alert-winter {
    padding-left: 37px;
  }
}
@media (max-width: 767.98px) {
   .alertnotice .alert-winter {
    padding-left: 12px;
  }
}

@media (min-width: 768px) {
  .alertnotice .alert-critical {
    padding-left: 36px;
  }
}
@media (max-width: 767.98px) {
   .alertnotice .alert-critical {
    padding-left: 18px;
  }
}

/*#OK - Alert Icon Types - alert-title removed - check later */

A.btn.btn-outline-primary.alert {
    position: relative;
    bottom: 1rem;
    padding-right: 8px
}

.alertnotice .alert-critical:before {
  font-family: "fontawesome";
  content: "\F071";
  color: #ff3a1d;
  position: relative;
  left: -12px;
}

.alertnotice .alert-regular:before {
  font-family: "Font Awesome 5 Free";
  content: "\F129";
  color: var(--teal);
  position: relative;
  left: -20px;
}

.alertnotice .alert-winter:before {
  font-family: "Font Awesome 5 Free";
  content: "\F2dc";
  color: var(--dark-blue);
  position: relative;
  left: -14px;
}

.alertnotice .toggle-box + LABEL {
  cursor: pointer;
  display: block;
  font-weight: bold;
  line-height: 21px;
  color: black;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  padding: 10px;
  margin-bottom: 0;
}
.alertnotice .toggle-box + LABEL + DIV {
  display: none;
}
.alertnotice .toggle-box:checked + LABEL + DIV {
  display: block;
}
.alertnotice .clear {
  clear: both;
}
.alertnotice .toggle-box + LABEL:before {
  font-family: "fontawesome";
  border-radius: 10px;
  color: black;
  content: "\F055";
  display: block;
  float: right;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  margin-right: 17px;
  text-align: center;
  width: 20px;
  font-size: 23px;
  z-index: 9999;
  position: relative;
}
.alertnotice .toggle-box:checked + LABEL:before {
  font-family: "fontawesome";
  color: black;
  font-size: 23px;
  content: "\F057";
  width: 20px;
  height: 19px;
}
.alertnotice .alert-body {
  color: black;
  padding: 0 25px 15px 25px;
  line-height: 18px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}
@media (min-width: 768px) {
  .alertnotice .alert-body {
    padding: 0 15px 15px 53px;
  }
}
.alertnotice .alert-body .alert-body-width {
  width: 100%;
}
@media (min-width: 768px) {
  .alertnotice .alert-body .alert-body-width {
    /*
    width: 66%;
    float: left;
    margin-bottom: 20px;
    padding-left: 12px; 
    */
  }
}
.alertnotice .alert-body .alert {
  /*text-transform: uppercase; VP set */
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .alertnotice .alert-body .alert {
    margin-top: 0;
    float: right;
    position: relative;
    margin-right: 36px;
    margin-bottom: 0;
  }
}

.home .alertnotice + #main-nav + .navbar + .main-navigation + .frontpage-banner .homepage-banner {
  margin-top: 0;
}

/* 
#OK - contains content in ATT carousel header 
*/ 
carousel-header-wrapper .homepage-banner {
    max-height: 551px;
    overflow: hidden;
}

.content-container HR {
  border-top: 1px solid var(--ung-blue);
}
@media (min-width: 768px) {
  .content-container .col-left {
    padding-right: 12px;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .content-container .col-right {
    padding-left: 50px;
    padding-top: 2px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .content-container .col-right {
    padding-left: 10px;
  }
}

.news-filter-wrapper LABEL.label-news-filter {
  font-weight: bold;
  color: black;
  margin-left: 2px;
}
.news-filter-wrapper LABEL.select {
  width: 290px;
  margin-left: 16px;
  border: 2px solid black;
}

.featured-news-item IMG {
    min-width: 100%;
    min-height: 100%
}

.featured-news-item {
  border: 0;
  border-radius: 0;
  background: var(--ung-blue);
  border-color: white !important;
}
.featured-news-item .row {
  border: 2px solid var(--lite-gray);
  transition: border-color 0.3s linear;
  transition: box-shadow 0.3s linear;
}
.featured-news-item .row:hover {
  border: 2px solid var(--ung-gold);
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.3);
}
.featured-news-item .card-body {
  padding: 15px 15px 55px 15px;
}
@media (min-width: 768px) {
  .featured-news-item .card-body {
    padding: 40px;
  }
}
.featured-news-item .card-title {
  color: #fff;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. */
  font-size: 32px;
}
.featured-news-item A {
  color: #fff;
  text-decoration: none !important;
}
.featured-news-item A:hover {
  color: #fff;
  text-decoration: none;
}
.featured-news-item A:hover .card-title {
  text-decoration: underline;
}
.featured-news-item A:hover .card-text {
  text-decoration: none;
}
.featured-news-item .card-text {
  color: #fff;
  font-size: 16px;
  font-family: var(--baseSerifFont); /* was: "Sentinel-Semibold" | EN - 2025/10/18 */
}
.featured-news-item .featured-image {
  background-image: url("/_uploads/images/2021/temp/featured.png");
}

/* #OK - modified feature image - no long bg image like VP set */

.card.featured-news-item .row.no-gutters DIV.min-height-240 {
  min-height: initial;
    display: flex;
  justify-content: center;
  align-items: center;
}

.card.featured-news-item .row.no-gutters DIV.min-height-240 IMG {
   min-height: auto;  
   display: inline-block
    }

@media (max-width: 1199px) {
.card.featured-news-item .row.no-gutters DIV.min-height-240 {
  min-height: initial;
    padding-left: 35px;
    
  }
}

@media (max-width: 991px) {
.card.featured-news-item .row.no-gutters DIV.min-height-240 {
  min-height: initial;
  padding: 0px;
  }
 }

.secondary-news-listings .col-md-6 {
  padding-left: 17px;
  padding-right: 10px;
  padding-top: 0px;
  padding-bottom: 30px;
}
.secondary-news-listings A {
  color: #272727;
}
.secondary-news-listings A:hover {
  color: #272727;
}
.secondary-news-listings A:hover .card-title {
  text-decoration: underline;
}
.secondary-news-listings .secondary-news-item {
  max-width: 100%;
  display: inline-block;
  border: 0;
  border-top: 10px solid var(--ung-blue);
  border-radius: 0;
  margin: 0 !important;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
}
.secondary-news-listings .secondary-news-item .card-body {
  padding: 15px 30px 25px 30px;
}
.secondary-news-listings .secondary-news-item .card-text {
  font-family: var(--baseSerifFont); /* was: "Sentinel-Semibold" | EN - 2025/10/18 */
  color: #606060;
  font-size: 16px;
}
.secondary-news-listings .secondary-news-item .card-title {
  font-size: 24px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  color: var(--ung-blue);
}

/*#OK - center old header images */
.secondary-news-item FIGURE IMG {
  display: block; 
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .news-items-container {
    padding-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .news-items-container .news-item-wrapper {
    padding: 0 17px !important;
  }
}
.news-items-container .col-md-6 {
  padding-left: 17px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.news-items-container .noContent {
  color: #000 !important;
  background-color: transparent !important;
  pointer-events: none;
}
.news-items-container .news-item {
  display: inline-block;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .news-items-container .news-item {
    background: var(--lite-gray);
    box-shadow: none;
  }
}
.news-items-container .news-item .card-img-top {
  border-radius: 0;
}
@media (max-width: 767.98px) {
  .news-items-container .news-item .card-img-top {
    display: none;
  }
}
.news-items-container .news-item .card-body {
  padding: 15px 30px 25px 30px;
}
@media (max-width: 767.98px) {
  .news-items-container .news-item .card-body {
    padding: 0;
    background: var(--lite-gray);
    font-size: 16px;
    text-decoration: underline;
  }
}
.news-items-container .news-item .card-title {
  color: var(--dark-blue);
  font-size: 24px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  padding: 0;
}
@media (max-width: 767.98px) {
  .news-items-container .news-item .card-title {
    font-size: 16px;
    padding: 0;
  }
}
.news-items-container .news-item .card-text {
  font-family: var(--baseSerifFont); /* was: "Sentinel-Semibold" | EN - 2025/10/18 */
  color: #606060;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .news-items-container .news-item .card-text {
    display: none;
  }
}
.news-items-container A {
  color: #fff;
}
.news-items-container A:hover {
  color: #fff;
  text-decoration: none;
}
.news-items-container A:hover .card-title {
  text-decoration: underline;
}
.news-items-container A:hover .card-text {
  text-decoration: none;
}

/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > LI {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\F26E";
}

.fa-accessible-icon:before {
  content: "\F368";
}

.fa-accusoft:before {
  content: "\F369";
}

.fa-acquisitions-incorporated:before {
  content: "\F6AF";
}

.fa-ad:before {
  content: "\F641";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-card:before {
  content: "\F2BB";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-adn:before {
  content: "\F170";
}

.fa-adversal:before {
  content: "\F36A";
}

.fa-affiliatetheme:before {
  content: "\F36B";
}

.fa-air-freshener:before {
  content: "\F5D0";
}

.fa-airbnb:before {
  content: "\F834";
}

.fa-algoliA:before {
  content: "\F36C";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-alipay:before {
  content: "\F642";
}

.fa-allergies:before {
  content: "\F461";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-amazon-pay:before {
  content: "\F42C";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-amiliA:before {
  content: "\F36D";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-android:before {
  content: "\F17B";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angry:before {
  content: "\F556";
}

.fa-angrycreative:before {
  content: "\F36E";
}

.fa-angular:before {
  content: "\F420";
}

.fa-ankh:before {
  content: "\F644";
}

.fa-app-store:before {
  content: "\F36F";
}

.fa-app-store-ios:before {
  content: "\F370";
}

.fa-apper:before {
  content: "\F371";
}

.fa-apple:before {
  content: "\F179";
}

.fa-apple-alt:before {
  content: "\F5D1";
}

.fa-apple-pay:before {
  content: "\F415";
}

.fa-archive:before {
  content: "\F187";
}

.fa-archway:before {
  content: "\F557";
}

.fa-arrow-alt-circle-down:before {
  content: "\F358";
}

.fa-arrow-alt-circle-left:before {
  content: "\F359";
}

.fa-arrow-alt-circle-right:before {
  content: "\F35A";
}

.fa-arrow-alt-circle-up:before {
  content: "\F35B";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-arrows-alt-h:before {
  content: "\F337";
}

.fa-arrows-alt-v:before {
  content: "\F338";
}

.fa-artstation:before {
  content: "\F77A";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-asymmetrik:before {
  content: "\F372";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-atlas:before {
  content: "\F558";
}

.fa-atlassian:before {
  content: "\F77B";
}

.fa-atom:before {
  content: "\F5D2";
}

.fa-audible:before {
  content: "\F373";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-autoprefixer:before {
  content: "\F41C";
}

.fa-avianex:before {
  content: "\F374";
}

.fa-aviato:before {
  content: "\F421";
}

.fa-award:before {
  content: "\F559";
}

.fa-aws:before {
  content: "\F375";
}

.fa-baby:before {
  content: "\F77C";
}

.fa-baby-carriage:before {
  content: "\F77D";
}

.fa-backspace:before {
  content: "\F55A";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-bacon:before {
  content: "\F7E5";
}

.fa-bacteriA:before {
  content: "\E059";
}

.fa-bacterium:before {
  content: "\E05A";
}

.fa-bahai:before {
  content: "\F666";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-balance-scale-left:before {
  content: "\F515";
}

.fa-balance-scale-right:before {
  content: "\F516";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-band-aid:before {
  content: "\F462";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-bars:before {
  content: "\F0C9";
}

.fa-baseball-ball:before {
  content: "\F433";
}

.fa-basketball-ball:before {
  content: "\F434";
}

.fa-bath:before {
  content: "\F2CD";
}

.fa-battery-empty:before {
  content: "\F244";
}

.fa-battery-full:before {
  content: "\F240";
}

.fa-battery-half:before {
  content: "\F242";
}

.fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battle-net:before {
  content: "\F835";
}

.fa-bed:before {
  content: "\F236";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bezier-curve:before {
  content: "\F55B";
}

.fa-bible:before {
  content: "\F647";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-biking:before {
  content: "\F84A";
}

.fa-bimobject:before {
  content: "\F378";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-biohazard:before {
  content: "\F780";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitcoin:before {
  content: "\F379";
}

.fa-bity:before {
  content: "\F37A";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-blackberry:before {
  content: "\F37B";
}

.fa-blender:before {
  content: "\F517";
}

.fa-blender-phone:before {
  content: "\F6B6";
}

.fa-blind:before {
  content: "\F29D";
}

.fa-blog:before {
  content: "\F781";
}

.fa-blogger:before {
  content: "\F37C";
}

.fa-blogger-b:before {
  content: "\F37D";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-bold:before {
  content: "\F032";
}

.fa-bolt:before {
  content: "\F0E7";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-bone:before {
  content: "\F5D7";
}

.fa-bong:before {
  content: "\F55C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-book-dead:before {
  content: "\F6B7";
}

.fa-book-medical:before {
  content: "\F7E6";
}

.fa-book-open:before {
  content: "\F518";
}

.fa-book-reader:before {
  content: "\F5DA";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-bootstrap:before {
  content: "\F836";
}

.fa-border-all:before {
  content: "\F84C";
}

.fa-border-none:before {
  content: "\F850";
}

.fa-border-style:before {
  content: "\F853";
}

.fa-bowling-ball:before {
  content: "\F436";
}

.fa-box:before {
  content: "\F466";
}

.fa-box-open:before {
  content: "\F49E";
}

.fa-box-tissue:before {
  content: "\E05B";
}

.fa-boxes:before {
  content: "\F468";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-brain:before {
  content: "\F5DC";
}

.fa-bread-slice:before {
  content: "\F7EC";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-briefcase-medical:before {
  content: "\F469";
}

.fa-broadcast-tower:before {
  content: "\F519";
}

.fa-broom:before {
  content: "\F51A";
}

.fa-brush:before {
  content: "\F55D";
}

.fa-btc:before {
  content: "\F15A";
}

.fa-buffer:before {
  content: "\F837";
}

.fa-bug:before {
  content: "\F188";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-burn:before {
  content: "\F46A";
}

.fa-buromobelexperte:before {
  content: "\F37F";
}

.fa-bus:before {
  content: "\F207";
}

.fa-bus-alt:before {
  content: "\F55E";
}

.fa-business-time:before {
  content: "\F64A";
}

.fa-buy-n-large:before {
  content: "\F8A6";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-calendar:before {
  content: "\F133";
}

.fa-calendar-alt:before {
  content: "\F073";
}

.fa-calendar-check:before {
  content: "\F274";
}

.fa-calendar-day:before {
  content: "\F783";
}

.fa-calendar-minus:before {
  content: "\F272";
}

.fa-calendar-plus:before {
  content: "\F271";
}

.fa-calendar-times:before {
  content: "\F273";
}

.fa-calendar-week:before {
  content: "\F784";
}

.fa-camerA:before {
  content: "\F030";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-campground:before {
  content: "\F6BB";
}

.fa-canadian-maple-leaf:before {
  content: "\F785";
}

.fa-candy-cane:before {
  content: "\F786";
}

.fa-cannabis:before {
  content: "\F55F";
}

.fa-capsules:before {
  content: "\F46B";
}

.fa-car:before {
  content: "\F1B9";
}

.fa-car-alt:before {
  content: "\F5DE";
}

.fa-car-battery:before {
  content: "\F5DF";
}

.fa-car-crash:before {
  content: "\F5E1";
}

.fa-car-side:before {
  content: "\F5E4";
}

.fa-caravan:before {
  content: "\F8FF";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-caret-square-down:before {
  content: "\F150";
}

.fa-caret-square-left:before {
  content: "\F191";
}

.fa-caret-square-right:before {
  content: "\F152";
}

.fa-caret-square-up:before {
  content: "\F151";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-carrot:before {
  content: "\F787";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cash-register:before {
  content: "\F788";
}

.fa-cat:before {
  content: "\F6BE";
}

.fa-cc-amazon-pay:before {
  content: "\F42D";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-apple-pay:before {
  content: "\F416";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-cc-visA:before {
  content: "\F1F0";
}

.fa-centercode:before {
  content: "\F380";
}

.fa-centos:before {
  content: "\F789";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-chair:before {
  content: "\F6C0";
}

.fa-chalkboard:before {
  content: "\F51B";
}

.fa-chalkboard-teacher:before {
  content: "\F51C";
}

.fa-charging-station:before {
  content: "\F5E7";
}

.fa-chart-areA:before {
  content: "\F1FE";
}

.fa-chart-bar:before {
  content: "\F080";
}

.fa-chart-line:before {
  content: "\F201";
}

.fa-chart-pie:before {
  content: "\F200";
}

.fa-check:before {
  content: "\F00C";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-check-double:before {
  content: "\F560";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-cheese:before {
  content: "\F7EF";
}

.fa-chess:before {
  content: "\F439";
}

.fa-chess-bishop:before {
  content: "\F43A";
}

.fa-chess-board:before {
  content: "\F43C";
}

.fa-chess-king:before {
  content: "\F43F";
}

.fa-chess-knight:before {
  content: "\F441";
}

.fa-chess-pawn:before {
  content: "\F443";
}

.fa-chess-queen:before {
  content: "\F445";
}

.fa-chess-rook:before {
  content: "\F447";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-chromecast:before {
  content: "\F838";
}

.fa-church:before {
  content: "\F51D";
}

.fa-circle:before {
  content: "\F111";
}

.fa-circle-notch:before {
  content: "\F1CE";
}

.fa-city:before {
  content: "\F64F";
}

.fa-clinic-medical:before {
  content: "\F7F2";
}

.fa-clipboard:before {
  content: "\F328";
}

.fa-clipboard-check:before {
  content: "\F46C";
}

.fa-clipboard-list:before {
  content: "\F46D";
}

.fa-clock:before {
  content: "\F017";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-closed-captioning:before {
  content: "\F20A";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-cloud-download-alt:before {
  content: "\F381";
}

.fa-cloud-meatball:before {
  content: "\F73B";
}

.fa-cloud-moon:before {
  content: "\F6C3";
}

.fa-cloud-moon-rain:before {
  content: "\F73C";
}

.fa-cloud-rain:before {
  content: "\F73D";
}

.fa-cloud-showers-heavy:before {
  content: "\F740";
}

.fa-cloud-sun:before {
  content: "\F6C4";
}

.fa-cloud-sun-rain:before {
  content: "\F743";
}

.fa-cloud-upload-alt:before {
  content: "\F382";
}

.fa-cloudflare:before {
  content: "\E07D";
}

.fa-cloudscale:before {
  content: "\F383";
}

.fa-cloudsmith:before {
  content: "\F384";
}

.fa-cloudversify:before {
  content: "\F385";
}

.fa-cocktail:before {
  content: "\F561";
}

.fa-code:before {
  content: "\F121";
}

.fa-code-branch:before {
  content: "\F126";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cog:before {
  content: "\F013";
}

.fa-cogs:before {
  content: "\F085";
}

.fa-coins:before {
  content: "\F51E";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-comment:before {
  content: "\F075";
}

.fa-comment-alt:before {
  content: "\F27A";
}

.fa-comment-dollar:before {
  content: "\F651";
}

.fa-comment-dots:before {
  content: "\F4AD";
}

.fa-comment-medical:before {
  content: "\F7F5";
}

.fa-comment-slash:before {
  content: "\F4B3";
}

.fa-comments:before {
  content: "\F086";
}

.fa-comments-dollar:before {
  content: "\F653";
}

.fa-compact-disc:before {
  content: "\F51F";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-compress:before {
  content: "\F066";
}

.fa-compress-alt:before {
  content: "\F422";
}

.fa-compress-arrows-alt:before {
  content: "\F78C";
}

.fa-concierge-bell:before {
  content: "\F562";
}

.fa-confluence:before {
  content: "\F78D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-cookie:before {
  content: "\F563";
}

.fa-cookie-bite:before {
  content: "\F564";
}

.fa-copy:before {
  content: "\F0C5";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-cotton-bureau:before {
  content: "\F89E";
}

.fa-couch:before {
  content: "\F4B8";
}

.fa-cpanel:before {
  content: "\F388";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-creative-commons-by:before {
  content: "\F4E7";
}

.fa-creative-commons-nc:before {
  content: "\F4E8";
}

.fa-creative-commons-nc-eu:before {
  content: "\F4E9";
}

.fa-creative-commons-nc-jp:before {
  content: "\F4EA";
}

.fa-creative-commons-nd:before {
  content: "\F4EB";
}

.fa-creative-commons-pd:before {
  content: "\F4EC";
}

.fa-creative-commons-pd-alt:before {
  content: "\F4ED";
}

.fa-creative-commons-remix:before {
  content: "\F4EE";
}

.fa-creative-commons-sA:before {
  content: "\F4EF";
}

.fa-creative-commons-sampling:before {
  content: "\F4F0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\F4F1";
}

.fa-creative-commons-share:before {
  content: "\F4F2";
}

.fa-creative-commons-zero:before {
  content: "\F4F3";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-critical-role:before {
  content: "\F6C9";
}

.fa-crop:before {
  content: "\F125";
}

.fa-crop-alt:before {
  content: "\F565";
}

.fa-cross:before {
  content: "\F654";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-crow:before {
  content: "\F520";
}

.fa-crown:before {
  content: "\F521";
}

.fa-crutch:before {
  content: "\F7F7";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-css3-alt:before {
  content: "\F38B";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-cut:before {
  content: "\F0C4";
}

.fa-cuttlefish:before {
  content: "\F38C";
}

.fa-d-and-d:before {
  content: "\F38D";
}

.fa-d-and-d-beyond:before {
  content: "\F6CA";
}

.fa-dailymotion:before {
  content: "\E052";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-deaf:before {
  content: "\F2A4";
}

.fa-deezer:before {
  content: "\E077";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-democrat:before {
  content: "\F747";
}

.fa-deploydog:before {
  content: "\F38E";
}

.fa-deskpro:before {
  content: "\F38F";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-dev:before {
  content: "\F6CC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-dharmachakrA:before {
  content: "\F655";
}

.fa-dhl:before {
  content: "\F790";
}

.fa-diagnoses:before {
  content: "\F470";
}

.fa-diasporA:before {
  content: "\F791";
}

.fa-dice:before {
  content: "\F522";
}

.fa-dice-d20:before {
  content: "\F6CF";
}

.fa-dice-d6:before {
  content: "\F6D1";
}

.fa-dice-five:before {
  content: "\F523";
}

.fa-dice-four:before {
  content: "\F524";
}

.fa-dice-one:before {
  content: "\F525";
}

.fa-dice-six:before {
  content: "\F526";
}

.fa-dice-three:before {
  content: "\F527";
}

.fa-dice-two:before {
  content: "\F528";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-digital-ocean:before {
  content: "\F391";
}

.fa-digital-tachograph:before {
  content: "\F566";
}

.fa-directions:before {
  content: "\F5EB";
}

.fa-discord:before {
  content: "\F392";
}

.fa-discourse:before {
  content: "\F393";
}

.fa-disease:before {
  content: "\F7FA";
}

.fa-divide:before {
  content: "\F529";
}

.fa-dizzy:before {
  content: "\F567";
}

.fa-dnA:before {
  content: "\F471";
}

.fa-dochub:before {
  content: "\F394";
}

.fa-docker:before {
  content: "\F395";
}

.fa-dog:before {
  content: "\F6D3";
}

.fa-dollar-sign:before {
  content: "\F155";
}

.fa-dolly:before {
  content: "\F472";
}

.fa-dolly-flatbed:before {
  content: "\F474";
}

.fa-donate:before {
  content: "\F4B9";
}

.fa-door-closed:before {
  content: "\F52A";
}

.fa-door-open:before {
  content: "\F52B";
}

.fa-dot-circle:before {
  content: "\F192";
}

.fa-dove:before {
  content: "\F4BA";
}

.fa-download:before {
  content: "\F019";
}

.fa-draft2digital:before {
  content: "\F396";
}

.fa-drafting-compass:before {
  content: "\F568";
}

.fa-dragon:before {
  content: "\F6D5";
}

.fa-draw-polygon:before {
  content: "\F5EE";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-dribbble-square:before {
  content: "\F397";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-drum:before {
  content: "\F569";
}

.fa-drum-steelpan:before {
  content: "\F56A";
}

.fa-drumstick-bite:before {
  content: "\F6D7";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-dumbbell:before {
  content: "\F44B";
}

.fa-dumpster:before {
  content: "\F793";
}

.fa-dumpster-fire:before {
  content: "\F794";
}

.fa-dungeon:before {
  content: "\F6D9";
}

.fa-dyalog:before {
  content: "\F399";
}

.fa-earlybirds:before {
  content: "\F39A";
}

.fa-ebay:before {
  content: "\F4F4";
}

.fa-edge:before {
  content: "\F282";
}

.fa-edge-legacy:before {
  content: "\E078";
}

.fa-edit:before {
  content: "\F044";
}

.fa-egg:before {
  content: "\F7FB";
}

.fa-eject:before {
  content: "\F052";
}

.fa-elementor:before {
  content: "\F430";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-ello:before {
  content: "\F5F1";
}

.fa-ember:before {
  content: "\F423";
}

.fa-empire:before {
  content: "\F1D1";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-text:before {
  content: "\F658";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-envirA:before {
  content: "\F299";
}

.fa-equals:before {
  content: "\F52C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-erlang:before {
  content: "\F39D";
}

.fa-ethereum:before {
  content: "\F42E";
}

.fa-ethernet:before {
  content: "\F796";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-euro-sign:before {
  content: "\F153";
}

.fa-evernote:before {
  content: "\F839";
}

.fa-exchange-alt:before {
  content: "\F362";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-expand:before {
  content: "\F065";
}

.fa-expand-alt:before {
  content: "\F424";
}

.fa-expand-arrows-alt:before {
  content: "\F31E";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-external-link-alt:before {
  content: "\F35D";
}

.fa-external-link-square-alt:before {
  content: "\F360";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-dropper:before {
  content: "\F1FB";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-facebook:before {
  content: "\F09A";
}

.fa-facebook-f:before {
  content: "\F39E";
}

.fa-facebook-messenger:before {
  content: "\F39F";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-fan:before {
  content: "\F863";
}

.fa-fantasy-flight-games:before {
  content: "\F6DC";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-faucet:before {
  content: "\E005";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-feather:before {
  content: "\F52D";
}

.fa-feather-alt:before {
  content: "\F56B";
}

.fa-fedex:before {
  content: "\F797";
}

.fa-fedorA:before {
  content: "\F798";
}

.fa-female:before {
  content: "\F182";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-figmA:before {
  content: "\F799";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-alt:before {
  content: "\F15C";
}

.fa-file-archive:before {
  content: "\F1C6";
}

.fa-file-audio:before {
  content: "\F1C7";
}

.fa-file-code:before {
  content: "\F1C9";
}

.fa-file-contract:before {
  content: "\F56C";
}

.fa-file-csv:before {
  content: "\F6DD";
}

.fa-file-download:before {
  content: "\F56D";
}

.fa-file-excel:before {
  content: "\F1C3";
}

.fa-file-export:before {
  content: "\F56E";
}

.fa-file-image:before {
  content: "\F1C5";
}

.fa-file-import:before {
  content: "\F56F";
}

.fa-file-invoice:before {
  content: "\F570";
}

.fa-file-invoice-dollar:before {
  content: "\F571";
}

.fa-file-medical:before {
  content: "\F477";
}

.fa-file-medical-alt:before {
  content: "\F478";
}

.fa-file-pdf:before {
  content: "\F1C1";
}

.fa-file-powerpoint:before {
  content: "\F1C4";
}

.fa-file-prescription:before {
  content: "\F572";
}

.fa-file-signature:before {
  content: "\F573";
}

.fa-file-upload:before {
  content: "\F574";
}

.fa-file-video:before {
  content: "\F1C8";
}

.fa-file-word:before {
  content: "\F1C2";
}

.fa-fill:before {
  content: "\F575";
}

.fa-fill-drip:before {
  content: "\F576";
}

.fa-film:before {
  content: "\F008";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-fingerprint:before {
  content: "\F577";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-fire-alt:before {
  content: "\F7E4";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-firefox-browser:before {
  content: "\E007";
}

.fa-first-aid:before {
  content: "\F479";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-first-order-alt:before {
  content: "\F50A";
}

.fa-firstdraft:before {
  content: "\F3A1";
}

.fa-fish:before {
  content: "\F578";
}

.fa-fist-raised:before {
  content: "\F6DE";
}

.fa-flag:before {
  content: "\F024";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-flag-usA:before {
  content: "\F74D";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-flipboard:before {
  content: "\F44D";
}

.fa-flushed:before {
  content: "\F579";
}

.fa-fly:before {
  content: "\F417";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-minus:before {
  content: "\F65D";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-folder-plus:before {
  content: "\F65E";
}

.fa-font:before {
  content: "\F031";
}

.fa-font-awesome:before {
  content: "\F2B4";
}

.fa-font-awesome-alt:before {
  content: "\F35C";
}

.fa-font-awesome-flag:before {
  content: "\F425";
}

.fa-font-awesome-logo-full:before {
  content: "\F4E6";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-fonticons-fi:before {
  content: "\F3A2";
}

.fa-football-ball:before {
  content: "\F44E";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-fort-awesome-alt:before {
  content: "\F3A3";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-freebsd:before {
  content: "\F3A4";
}

.fa-frog:before {
  content: "\F52E";
}

.fa-frown:before {
  content: "\F119";
}

.fa-frown-open:before {
  content: "\F57A";
}

.fa-fulcrum:before {
  content: "\F50B";
}

.fa-funnel-dollar:before {
  content: "\F662";
}

.fa-futbol:before {
  content: "\F1E3";
}

.fa-galactic-republic:before {
  content: "\F50C";
}

.fa-galactic-senate:before {
  content: "\F50D";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-gas-pump:before {
  content: "\F52F";
}

.fa-gavel:before {
  content: "\F0E3";
}

.fa-gem:before {
  content: "\F3A5";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-ghost:before {
  content: "\F6E2";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-gifts:before {
  content: "\F79C";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-git-alt:before {
  content: "\F841";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-github:before {
  content: "\F09B";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-gitkraken:before {
  content: "\F3A6";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-gitter:before {
  content: "\F426";
}

.fa-glass-cheers:before {
  content: "\F79F";
}

.fa-glass-martini:before {
  content: "\F000";
}

.fa-glass-martini-alt:before {
  content: "\F57B";
}

.fa-glass-whiskey:before {
  content: "\F7A0";
}

.fa-glasses:before {
  content: "\F530";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-globe-africA:before {
  content: "\F57C";
}

.fa-globe-americas:before {
  content: "\F57D";
}

.fa-globe-asiA:before {
  content: "\F57E";
}

.fa-globe-europe:before {
  content: "\F7A2";
}

.fa-gofore:before {
  content: "\F3A7";
}

.fa-golf-ball:before {
  content: "\F450";
}

.fa-goodreads:before {
  content: "\F3A8";
}

.fa-goodreads-g:before {
  content: "\F3A9";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-google-drive:before {
  content: "\F3AA";
}

.fa-google-pay:before {
  content: "\E079";
}

.fa-google-play:before {
  content: "\F3AB";
}

.fa-google-plus:before {
  content: "\F2B3";
}

.fa-google-plus-g:before {
  content: "\F0D5";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-gopuram:before {
  content: "\F664";
}

.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-gratipay:before {
  content: "\F184";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-greater-than:before {
  content: "\F531";
}

.fa-greater-than-equal:before {
  content: "\F532";
}

.fa-grimace:before {
  content: "\F57F";
}

.fa-grin:before {
  content: "\F580";
}

.fa-grin-alt:before {
  content: "\F581";
}

.fa-grin-beam:before {
  content: "\F582";
}

.fa-grin-beam-sweat:before {
  content: "\F583";
}

.fa-grin-hearts:before {
  content: "\F584";
}

.fa-grin-squint:before {
  content: "\F585";
}

.fa-grin-squint-tears:before {
  content: "\F586";
}

.fa-grin-stars:before {
  content: "\F587";
}

.fa-grin-tears:before {
  content: "\F588";
}

.fa-grin-tongue:before {
  content: "\F589";
}

.fa-grin-tongue-squint:before {
  content: "\F58A";
}

.fa-grin-tongue-wink:before {
  content: "\F58B";
}

.fa-grin-wink:before {
  content: "\F58C";
}

.fa-grip-horizontal:before {
  content: "\F58D";
}

.fa-grip-lines:before {
  content: "\F7A4";
}

.fa-grip-lines-vertical:before {
  content: "\F7A5";
}

.fa-grip-vertical:before {
  content: "\F58E";
}

.fa-gripfire:before {
  content: "\F3AC";
}

.fa-grunt:before {
  content: "\F3AD";
}

.fa-guilded:before {
  content: "\E07E";
}

.fa-guitar:before {
  content: "\F7A6";
}

.fa-gulp:before {
  content: "\F3AE";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-hacker-news-square:before {
  content: "\F3AF";
}

.fa-hackerrank:before {
  content: "\F5F7";
}

.fa-hamburger:before {
  content: "\F805";
}

.fa-hammer:before {
  content: "\F6E3";
}

.fa-hamsA:before {
  content: "\F665";
}

.fa-hand-holding:before {
  content: "\F4BD";
}

.fa-hand-holding-heart:before {
  content: "\F4BE";
}

.fa-hand-holding-medical:before {
  content: "\E05C";
}

.fa-hand-holding-usd:before {
  content: "\F4C0";
}

.fa-hand-holding-water:before {
  content: "\F4C1";
}

.fa-hand-lizard:before {
  content: "\F258";
}

.fa-hand-middle-finger:before {
  content: "\F806";
}

.fa-hand-paper:before {
  content: "\F256";
}

.fa-hand-peace:before {
  content: "\F25B";
}

.fa-hand-point-down:before {
  content: "\F0A7";
}

.fa-hand-point-left:before {
  content: "\F0A5";
}

.fa-hand-point-right:before {
  content: "\F0A4";
}

.fa-hand-point-up:before {
  content: "\F0A6";
}

.fa-hand-pointer:before {
  content: "\F25A";
}

.fa-hand-rock:before {
  content: "\F255";
}

.fa-hand-scissors:before {
  content: "\F257";
}

.fa-hand-sparkles:before {
  content: "\E05D";
}

.fa-hand-spock:before {
  content: "\F259";
}

.fa-hands:before {
  content: "\F4C2";
}

.fa-hands-helping:before {
  content: "\F4C4";
}

.fa-hands-wash:before {
  content: "\E05E";
}

.fa-handshake:before {
  content: "\F2B5";
}

.fa-handshake-alt-slash:before {
  content: "\E05F";
}

.fa-handshake-slash:before {
  content: "\E060";
}

.fa-hanukiah:before {
  content: "\F6E6";
}

.fa-hard-hat:before {
  content: "\F807";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-hat-cowboy:before {
  content: "\F8C0";
}

.fa-hat-cowboy-side:before {
  content: "\F8C1";
}

.fa-hat-wizard:before {
  content: "\F6E8";
}

.fa-hdd:before {
  content: "\F0A0";
}

.fa-head-side-cough:before {
  content: "\E061";
}

.fa-head-side-cough-slash:before {
  content: "\E062";
}

.fa-head-side-mask:before {
  content: "\E063";
}

.fa-head-side-virus:before {
  content: "\E064";
}

.fa-heading:before {
  content: "\F1DC";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-headphones-alt:before {
  content: "\F58F";
}

.fa-headset:before {
  content: "\F590";
}

.fa-heart:before {
  content: "\F004";
}

.fa-heart-broken:before {
  content: "\F7A9";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-helicopter:before {
  content: "\F533";
}

.fa-highlighter:before {
  content: "\F591";
}

.fa-hiking:before {
  content: "\F6EC";
}

.fa-hippo:before {
  content: "\F6ED";
}

.fa-hips:before {
  content: "\F452";
}

.fa-hire-a-helper:before {
  content: "\F3B0";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-hive:before {
  content: "\E07F";
}

.fa-hockey-puck:before {
  content: "\F453";
}

.fa-holly-berry:before {
  content: "\F7AA";
}

.fa-home:before {
  content: "\F015";
}

.fa-hooli:before {
  content: "\F427";
}

.fa-hornbill:before {
  content: "\F592";
}

.fa-horse:before {
  content: "\F6F0";
}

.fa-horse-head:before {
  content: "\F7AB";
}

.fa-hospital:before {
  content: "\F0F8";
}

.fa-hospital-alt:before {
  content: "\F47D";
}

.fa-hospital-symbol:before {
  content: "\F47E";
}

.fa-hospital-user:before {
  content: "\F80D";
}

.fa-hot-tub:before {
  content: "\F593";
}

.fa-hotdog:before {
  content: "\F80F";
}

.fa-hotel:before {
  content: "\F594";
}

.fa-hotjar:before {
  content: "\F3B1";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-start:before {
  content: "\F251";
}

.fa-house-damage:before {
  content: "\F6F1";
}

.fa-house-user:before {
  content: "\E065";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-hryvniA:before {
  content: "\F6F2";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-hubspot:before {
  content: "\F3B2";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-ice-cream:before {
  content: "\F810";
}

.fa-icicles:before {
  content: "\F7AD";
}

.fa-icons:before {
  content: "\F86D";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-id-card:before {
  content: "\F2C2";
}

.fa-id-card-alt:before {
  content: "\F47F";
}

.fa-ideal:before {
  content: "\E013";
}

.fa-igloo:before {
  content: "\F7AE";
}

.fa-image:before {
  content: "\F03E";
}

.fa-images:before {
  content: "\F302";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-industry:before {
  content: "\F275";
}

.fa-infinity:before {
  content: "\F534";
}

.fa-info:before {
  content: "\F129";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-innosoft:before {
  content: "\E080";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-instagram-square:before {
  content: "\E055";
}

.fa-instalod:before {
  content: "\E081";
}

.fa-intercom:before {
  content: "\F7AF";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-invision:before {
  content: "\F7B0";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-italic:before {
  content: "\F033";
}

.fa-itch-io:before {
  content: "\F83A";
}

.fa-itunes:before {
  content: "\F3B4";
}

.fa-itunes-note:before {
  content: "\F3B5";
}

.fa-javA:before {
  content: "\F4E4";
}

.fa-jedi:before {
  content: "\F669";
}

.fa-jedi-order:before {
  content: "\F50E";
}

.fa-jenkins:before {
  content: "\F3B6";
}

.fa-jirA:before {
  content: "\F7B1";
}

.fa-joget:before {
  content: "\F3B7";
}

.fa-joint:before {
  content: "\F595";
}

.fa-joomlA:before {
  content: "\F1AA";
}

.fa-journal-whills:before {
  content: "\F66A";
}

.fa-js:before {
  content: "\F3B8";
}

.fa-js-square:before {
  content: "\F3B9";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-kaabA:before {
  content: "\F66B";
}

.fa-kaggle:before {
  content: "\F5FA";
}

.fa-key:before {
  content: "\F084";
}

.fa-keybase:before {
  content: "\F4F5";
}

.fa-keyboard:before {
  content: "\F11C";
}

.fa-keycdn:before {
  content: "\F3BA";
}

.fa-khandA:before {
  content: "\F66D";
}

.fa-kickstarter:before {
  content: "\F3BB";
}

.fa-kickstarter-k:before {
  content: "\F3BC";
}

.fa-kiss:before {
  content: "\F596";
}

.fa-kiss-beam:before {
  content: "\F597";
}

.fa-kiss-wink-heart:before {
  content: "\F598";
}

.fa-kiwi-bird:before {
  content: "\F535";
}

.fa-korvue:before {
  content: "\F42F";
}

.fa-landmark:before {
  content: "\F66F";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-laptop-code:before {
  content: "\F5FC";
}

.fa-laptop-house:before {
  content: "\E066";
}

.fa-laptop-medical:before {
  content: "\F812";
}

.fa-laravel:before {
  content: "\F3BD";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-laugh:before {
  content: "\F599";
}

.fa-laugh-beam:before {
  content: "\F59A";
}

.fa-laugh-squint:before {
  content: "\F59B";
}

.fa-laugh-wink:before {
  content: "\F59C";
}

.fa-layer-group:before {
  content: "\F5FD";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-lemon:before {
  content: "\F094";
}

.fa-less:before {
  content: "\F41D";
}

.fa-less-than:before {
  content: "\F536";
}

.fa-less-than-equal:before {
  content: "\F537";
}

.fa-level-down-alt:before {
  content: "\F3BE";
}

.fa-level-up-alt:before {
  content: "\F3BF";
}

.fa-life-ring:before {
  content: "\F1CD";
}

.fa-lightbulb:before {
  content: "\F0EB";
}

.fa-line:before {
  content: "\F3C0";
}

.fa-link:before {
  content: "\F0C1";
}

.fa-linkedin:before {
  content: "\F08C";
}

.fa-linkedin-in:before {
  content: "\F0E1";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-lira-sign:before {
  content: "\F195";
}

.fa-list:before {
  content: "\F03A";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-lock:before {
  content: "\F023";
}

.fa-lock-open:before {
  content: "\F3C1";
}

.fa-long-arrow-alt-down:before {
  content: "\F309";
}

.fa-long-arrow-alt-left:before {
  content: "\F30A";
}

.fa-long-arrow-alt-right:before {
  content: "\F30B";
}

.fa-long-arrow-alt-up:before {
  content: "\F30C";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-luggage-cart:before {
  content: "\F59D";
}

.fa-lungs:before {
  content: "\F604";
}

.fa-lungs-virus:before {
  content: "\E067";
}

.fa-lyft:before {
  content: "\F3C3";
}

.fa-magento:before {
  content: "\F3C4";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-mail-bulk:before {
  content: "\F674";
}

.fa-mailchimp:before {
  content: "\F59E";
}

.fa-male:before {
  content: "\F183";
}

.fa-mandalorian:before {
  content: "\F50F";
}

.fa-map:before {
  content: "\F279";
}

.fa-map-marked:before {
  content: "\F59F";
}

.fa-map-marked-alt:before {
  content: "\F5A0";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-map-marker-alt:before {
  content: "\F3C5";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-markdown:before {
  content: "\F60F";
}

.fa-marker:before {
  content: "\F5A1";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mask:before {
  content: "\F6FA";
}

.fa-mastodon:before {
  content: "\F4F6";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-mdb:before {
  content: "\F8CA";
}

.fa-medal:before {
  content: "\F5A2";
}

.fa-medapps:before {
  content: "\F3C6";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-medium-m:before {
  content: "\F3C7";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-medrt:before {
  content: "\F3C8";
}

.fa-meetup:before {
  content: "\F2E0";
}

.fa-megaport:before {
  content: "\F5A3";
}

.fa-meh:before {
  content: "\F11A";
}

.fa-meh-blank:before {
  content: "\F5A4";
}

.fa-meh-rolling-eyes:before {
  content: "\F5A5";
}

.fa-memory:before {
  content: "\F538";
}

.fa-mendeley:before {
  content: "\F7B3";
}

.fa-menorah:before {
  content: "\F676";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-meteor:before {
  content: "\F753";
}

.fa-microblog:before {
  content: "\E01A";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-alt:before {
  content: "\F3C9";
}

.fa-microphone-alt-slash:before {
  content: "\F539";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-microscope:before {
  content: "\F610";
}

.fa-microsoft:before {
  content: "\F3CA";
}

.fa-minus:before {
  content: "\F068";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-mitten:before {
  content: "\F7B5";
}

.fa-mix:before {
  content: "\F3CB";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-mixer:before {
  content: "\E056";
}

.fa-mizuni:before {
  content: "\F3CC";
}

.fa-mobile:before {
  content: "\F10B";
}

.fa-mobile-alt:before {
  content: "\F3CD";
}

.fa-modx:before {
  content: "\F285";
}

.fa-monero:before {
  content: "\F3D0";
}

.fa-money-bill:before {
  content: "\F0D6";
}

.fa-money-bill-alt:before {
  content: "\F3D1";
}

.fa-money-bill-wave:before {
  content: "\F53A";
}

.fa-money-bill-wave-alt:before {
  content: "\F53B";
}

.fa-money-check:before {
  content: "\F53C";
}

.fa-money-check-alt:before {
  content: "\F53D";
}

.fa-monument:before {
  content: "\F5A6";
}

.fa-moon:before {
  content: "\F186";
}

.fa-mortar-pestle:before {
  content: "\F5A7";
}

.fa-mosque:before {
  content: "\F678";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-mountain:before {
  content: "\F6FC";
}

.fa-mouse:before {
  content: "\F8CC";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-mug-hot:before {
  content: "\F7B6";
}

.fa-music:before {
  content: "\F001";
}

.fa-napster:before {
  content: "\F3D2";
}

.fa-neos:before {
  content: "\F612";
}

.fa-network-wired:before {
  content: "\F6FF";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-newspaper:before {
  content: "\F1EA";
}

.fa-nimblr:before {
  content: "\F5A8";
}

.fa-node:before {
  content: "\F419";
}

.fa-node-js:before {
  content: "\F3D3";
}

.fa-not-equal:before {
  content: "\F53E";
}

.fa-notes-medical:before {
  content: "\F481";
}

.fa-npm:before {
  content: "\F3D4";
}

.fa-ns8:before {
  content: "\F3D5";
}

.fa-nutritionix:before {
  content: "\F3D6";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-octopus-deploy:before {
  content: "\E082";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-oil-can:before {
  content: "\F613";
}

.fa-old-republic:before {
  content: "\F510";
}

.fa-om:before {
  content: "\F679";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-operA:before {
  content: "\F26A";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-orcid:before {
  content: "\F8D2";
}

.fa-osi:before {
  content: "\F41A";
}

.fa-otter:before {
  content: "\F700";
}

.fa-outdent:before {
  content: "\F03B";
}

.fa-page4:before {
  content: "\F3D7";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-pager:before {
  content: "\F815";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-paint-roller:before {
  content: "\F5AA";
}

.fa-palette:before {
  content: "\F53F";
}

.fa-palfed:before {
  content: "\F3D8";
}

.fa-pallet:before {
  content: "\F482";
}

.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-parachute-box:before {
  content: "\F4CD";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-parking:before {
  content: "\F540";
}

.fa-passport:before {
  content: "\F5AB";
}

.fa-pastafarianism:before {
  content: "\F67B";
}

.fa-paste:before {
  content: "\F0EA";
}

.fa-patreon:before {
  content: "\F3D9";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-peace:before {
  content: "\F67C";
}

.fa-pen:before {
  content: "\F304";
}

.fa-pen-alt:before {
  content: "\F305";
}

.fa-pen-fancy:before {
  content: "\F5AC";
}

.fa-pen-nib:before {
  content: "\F5AD";
}

.fa-pen-square:before {
  content: "\F14B";
}

.fa-pencil-alt:before {
  content: "\F303";
}

.fa-pencil-ruler:before {
  content: "\F5AE";
}

.fa-penny-arcade:before {
  content: "\F704";
}

.fa-people-arrows:before {
  content: "\E068";
}

.fa-people-carry:before {
  content: "\F4CE";
}

.fa-pepper-hot:before {
  content: "\F816";
}

.fa-perbyte:before {
  content: "\E083";
}

.fa-percent:before {
  content: "\F295";
}

.fa-percentage:before {
  content: "\F541";
}

.fa-periscope:before {
  content: "\F3DA";
}

.fa-person-booth:before {
  content: "\F756";
}

.fa-phabricator:before {
  content: "\F3DB";
}

.fa-phoenix-framework:before {
  content: "\F3DC";
}

.fa-phoenix-squadron:before {
  content: "\F511";
}

.fa-phone:before {
  content: "\F095";
}

.fa-phone-alt:before {
  content: "\F879";
}

.fa-phone-slash:before {
  content: "\F3DD";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-phone-square-alt:before {
  content: "\F87B";
}

.fa-phone-volume:before {
  content: "\F2A0";
}

.fa-photo-video:before {
  content: "\F87C";
}

.fa-php:before {
  content: "\F457";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-pied-piper-hat:before {
  content: "\F4E5";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-square:before {
  content: "\E01E";
}

.fa-piggy-bank:before {
  content: "\F4D3";
}

.fa-pills:before {
  content: "\F484";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-pizza-slice:before {
  content: "\F818";
}

.fa-place-of-worship:before {
  content: "\F67F";
}

.fa-plane:before {
  content: "\F072";
}

.fa-plane-arrival:before {
  content: "\F5AF";
}

.fa-plane-departure:before {
  content: "\F5B0";
}

.fa-plane-slash:before {
  content: "\E069";
}

.fa-play:before {
  content: "\F04B";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-playstation:before {
  content: "\F3DF";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-plus:before {
  content: "\F067";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-poll:before {
  content: "\F681";
}

.fa-poll-h:before {
  content: "\F682";
}

.fa-poo:before {
  content: "\F2FE";
}

.fa-poo-storm:before {
  content: "\F75A";
}

.fa-poop:before {
  content: "\F619";
}

.fa-portrait:before {
  content: "\F3E0";
}

.fa-pound-sign:before {
  content: "\F154";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-pray:before {
  content: "\F683";
}

.fa-praying-hands:before {
  content: "\F684";
}

.fa-prescription:before {
  content: "\F5B1";
}

.fa-prescription-bottle:before {
  content: "\F485";
}

.fa-prescription-bottle-alt:before {
  content: "\F486";
}

.fa-print:before {
  content: "\F02F";
}

.fa-procedures:before {
  content: "\F487";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-project-diagram:before {
  content: "\F542";
}

.fa-pump-medical:before {
  content: "\E06A";
}

.fa-pump-soap:before {
  content: "\E06B";
}

.fa-pushed:before {
  content: "\F3E1";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-python:before {
  content: "\F3E2";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-question:before {
  content: "\F128";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-quidditch:before {
  content: "\F458";
}

.fa-quinscape:before {
  content: "\F459";
}

.fa-quorA:before {
  content: "\F2C4";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-quran:before {
  content: "\F687";
}

.fa-r-project:before {
  content: "\F4F7";
}

.fa-radiation:before {
  content: "\F7B9";
}

.fa-radiation-alt:before {
  content: "\F7BA";
}

.fa-rainbow:before {
  content: "\F75B";
}

.fa-random:before {
  content: "\F074";
}

.fa-raspberry-pi:before {
  content: "\F7BB";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-react:before {
  content: "\F41B";
}

.fa-reacteurope:before {
  content: "\F75D";
}

.fa-readme:before {
  content: "\F4D5";
}

.fa-rebel:before {
  content: "\F1D0";
}

.fa-receipt:before {
  content: "\F543";
}

.fa-record-vinyl:before {
  content: "\F8D9";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-red-river:before {
  content: "\F3E3";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-redhat:before {
  content: "\F7BC";
}

.fa-redo:before {
  content: "\F01E";
}

.fa-redo-alt:before {
  content: "\F2F9";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-remove-format:before {
  content: "\F87D";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-reply:before {
  content: "\F3E5";
}

.fa-reply-all:before {
  content: "\F122";
}

.fa-replyd:before {
  content: "\F3E6";
}

.fa-republican:before {
  content: "\F75E";
}

.fa-researchgate:before {
  content: "\F4F8";
}

.fa-resolving:before {
  content: "\F3E7";
}

.fa-restroom:before {
  content: "\F7BD";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-rev:before {
  content: "\F5B2";
}

.fa-ribbon:before {
  content: "\F4D6";
}

.fa-ring:before {
  content: "\F70B";
}

.fa-road:before {
  content: "\F018";
}

.fa-robot:before {
  content: "\F544";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-rocketchat:before {
  content: "\F3E8";
}

.fa-rockrms:before {
  content: "\F3E9";
}

.fa-route:before {
  content: "\F4D7";
}

.fa-rss:before {
  content: "\F09E";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-ruble-sign:before {
  content: "\F158";
}

.fa-ruler:before {
  content: "\F545";
}

.fa-ruler-combined:before {
  content: "\F546";
}

.fa-ruler-horizontal:before {
  content: "\F547";
}

.fa-ruler-vertical:before {
  content: "\F548";
}

.fa-running:before {
  content: "\F70C";
}

.fa-rupee-sign:before {
  content: "\F156";
}

.fa-rust:before {
  content: "\E07A";
}

.fa-sad-cry:before {
  content: "\F5B3";
}

.fa-sad-tear:before {
  content: "\F5B4";
}

.fa-safari:before {
  content: "\F267";
}

.fa-salesforce:before {
  content: "\F83B";
}

.fa-sass:before {
  content: "\F41E";
}

.fa-satellite:before {
  content: "\F7BF";
}

.fa-satellite-dish:before {
  content: "\F7C0";
}

.fa-save:before {
  content: "\F0C7";
}

.fa-schlix:before {
  content: "\F3EA";
}

.fa-school:before {
  content: "\F549";
}

.fa-screwdriver:before {
  content: "\F54A";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-scroll:before {
  content: "\F70E";
}

.fa-sd-card:before {
  content: "\F7C2";
}

.fa-search:before {
  content: "\F002";
}

.fa-search-dollar:before {
  content: "\F688";
}

.fa-search-location:before {
  content: "\F689";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-searchengin:before {
  content: "\F3EB";
}

.fa-seedling:before {
  content: "\F4D8";
}

.fa-sellcast:before {
  content: "\F2DA";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-server:before {
  content: "\F233";
}

.fa-servicestack:before {
  content: "\F3EC";
}

.fa-shapes:before {
  content: "\F61F";
}

.fa-share:before {
  content: "\F064";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-shekel-sign:before {
  content: "\F20B";
}

.fa-shield-alt:before {
  content: "\F3ED";
}

.fa-shield-virus:before {
  content: "\E06C";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-shipping-fast:before {
  content: "\F48B";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-shoe-prints:before {
  content: "\F54B";
}

.fa-shopify:before {
  content: "\E057";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-shopware:before {
  content: "\F5B5";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-shuttle-van:before {
  content: "\F5B6";
}

.fa-sign:before {
  content: "\F4D9";
}

.fa-sign-in-alt:before {
  content: "\F2F6";
}

.fa-sign-language:before {
  content: "\F2A7";
}

.fa-sign-out-alt:before {
  content: "\F2F5";
}

.fa-signal:before {
  content: "\F012";
}

.fa-signature:before {
  content: "\F5B7";
}

.fa-sim-card:before {
  content: "\F7C4";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-sink:before {
  content: "\E06D";
}

.fa-sistrix:before {
  content: "\F3EE";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-sith:before {
  content: "\F512";
}

.fa-skating:before {
  content: "\F7C5";
}

.fa-sketch:before {
  content: "\F7C6";
}

.fa-skiing:before {
  content: "\F7C9";
}

.fa-skiing-nordic:before {
  content: "\F7CA";
}

.fa-skull:before {
  content: "\F54C";
}

.fa-skull-crossbones:before {
  content: "\F714";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-slack:before {
  content: "\F198";
}

.fa-slack-hash:before {
  content: "\F3EF";
}

.fa-slash:before {
  content: "\F715";
}

.fa-sleigh:before {
  content: "\F7CC";
}

.fa-sliders-h:before {
  content: "\F1DE";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-smile:before {
  content: "\F118";
}

.fa-smile-beam:before {
  content: "\F5B8";
}

.fa-smile-wink:before {
  content: "\F4DA";
}

.fa-smog:before {
  content: "\F75F";
}

.fa-smoking:before {
  content: "\F48D";
}

.fa-smoking-ban:before {
  content: "\F54D";
}

.fa-sms:before {
  content: "\F7CD";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-snowboarding:before {
  content: "\F7CE";
}

.fa-snowflake:before {
  content: "\F2DC";
}

.fa-snowman:before {
  content: "\F7D0";
}

.fa-snowplow:before {
  content: "\F7D2";
}

.fa-soap:before {
  content: "\E06E";
}

.fa-socks:before {
  content: "\F696";
}

.fa-solar-panel:before {
  content: "\F5BA";
}

.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-alpha-down:before {
  content: "\F15D";
}

.fa-sort-alpha-down-alt:before {
  content: "\F881";
}

.fa-sort-alpha-up:before {
  content: "\F15E";
}

.fa-sort-alpha-up-alt:before {
  content: "\F882";
}

.fa-sort-amount-down:before {
  content: "\F160";
}

.fa-sort-amount-down-alt:before {
  content: "\F884";
}

.fa-sort-amount-up:before {
  content: "\F161";
}

.fa-sort-amount-up-alt:before {
  content: "\F885";
}

.fa-sort-down:before {
  content: "\F0DD";
}

.fa-sort-numeric-down:before {
  content: "\F162";
}

.fa-sort-numeric-down-alt:before {
  content: "\F886";
}

.fa-sort-numeric-up:before {
  content: "\F163";
}

.fa-sort-numeric-up-alt:before {
  content: "\F887";
}

.fa-sort-up:before {
  content: "\F0DE";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-sourcetree:before {
  content: "\F7D3";
}

.fa-spA:before {
  content: "\F5BB";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-speakap:before {
  content: "\F3F3";
}

.fa-speaker-deck:before {
  content: "\F83C";
}

.fa-spell-check:before {
  content: "\F891";
}

.fa-spider:before {
  content: "\F717";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-splotch:before {
  content: "\F5BC";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-spray-can:before {
  content: "\F5BD";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-square-full:before {
  content: "\F45C";
}

.fa-square-root-alt:before {
  content: "\F698";
}

.fa-squarespace:before {
  content: "\F5BE";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-stackpath:before {
  content: "\F842";
}

.fa-stamp:before {
  content: "\F5BF";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-and-crescent:before {
  content: "\F699";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-star-half-alt:before {
  content: "\F5C0";
}

.fa-star-of-david:before {
  content: "\F69A";
}

.fa-star-of-life:before {
  content: "\F621";
}

.fa-staylinked:before {
  content: "\F3F5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-steam-symbol:before {
  content: "\F3F6";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-sticker-mule:before {
  content: "\F3F7";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stopwatch:before {
  content: "\F2F2";
}

.fa-stopwatch-20:before {
  content: "\E06F";
}

.fa-store:before {
  content: "\F54E";
}

.fa-store-alt:before {
  content: "\F54F";
}

.fa-store-alt-slash:before {
  content: "\E070";
}

.fa-store-slash:before {
  content: "\E071";
}

.fa-stravA:before {
  content: "\F428";
}

.fa-stream:before {
  content: "\F550";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-stripe:before {
  content: "\F429";
}

.fa-stripe-s:before {
  content: "\F42A";
}

.fa-stroopwafel:before {
  content: "\F551";
}

.fa-studiovinari:before {
  content: "\F3F8";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-subway:before {
  content: "\F239";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-suitcase-rolling:before {
  content: "\F5C1";
}

.fa-sun:before {
  content: "\F185";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-supple:before {
  content: "\F3F9";
}

.fa-surprise:before {
  content: "\F5C2";
}

.fa-suse:before {
  content: "\F7D6";
}

.fa-swatchbook:before {
  content: "\F5C3";
}

.fa-swift:before {
  content: "\F8E1";
}

.fa-swimmer:before {
  content: "\F5C4";
}

.fa-swimming-pool:before {
  content: "\F5C5";
}

.fa-symfony:before {
  content: "\F83D";
}

.fa-synagogue:before {
  content: "\F69B";
}

.fa-sync:before {
  content: "\F021";
}

.fa-sync-alt:before {
  content: "\F2F1";
}

.fa-syringe:before {
  content: "\F48E";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-table-tennis:before {
  content: "\F45D";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-tablet-alt:before {
  content: "\F3FA";
}

.fa-tablets:before {
  content: "\F490";
}

.fa-tachometer-alt:before {
  content: "\F3FD";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-tape:before {
  content: "\F4DB";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-taxi:before {
  content: "\F1BA";
}

.fa-teamspeak:before {
  content: "\F4F9";
}

.fa-teeth:before {
  content: "\F62E";
}

.fa-teeth-open:before {
  content: "\F62F";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-telegram-plane:before {
  content: "\F3FE";
}

.fa-temperature-high:before {
  content: "\F769";
}

.fa-temperature-low:before {
  content: "\F76B";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-tenge:before {
  content: "\F7D7";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-the-red-yeti:before {
  content: "\F69D";
}

.fa-theater-masks:before {
  content: "\F630";
}

.fa-themeco:before {
  content: "\F5C6";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-thermometer:before {
  content: "\F491";
}

.fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-think-peaks:before {
  content: "\F731";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbtack:before {
  content: "\F08D";
}

.fa-ticket-alt:before {
  content: "\F3FF";
}

.fa-tiktok:before {
  content: "\E07B";
}

.fa-times:before {
  content: "\F00D";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-tint:before {
  content: "\F043";
}

.fa-tint-slash:before {
  content: "\F5C7";
}

.fa-tired:before {
  content: "\F5C8";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-toilet:before {
  content: "\F7D8";
}

.fa-toilet-paper:before {
  content: "\F71E";
}

.fa-toilet-paper-slash:before {
  content: "\E072";
}

.fa-toolbox:before {
  content: "\F552";
}

.fa-tools:before {
  content: "\F7D9";
}

.fa-tooth:before {
  content: "\F5C9";
}

.fa-torah:before {
  content: "\F6A0";
}

.fa-torii-gate:before {
  content: "\F6A1";
}

.fa-tractor:before {
  content: "\F722";
}

.fa-trade-federation:before {
  content: "\F513";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-traffic-light:before {
  content: "\F637";
}

.fa-trailer:before {
  content: "\E041";
}

.fa-train:before {
  content: "\F238";
}

.fa-tram:before {
  content: "\F7DA";
}

.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-trash-alt:before {
  content: "\F2ED";
}

.fa-trash-restore:before {
  content: "\F829";
}

.fa-trash-restore-alt:before {
  content: "\F82A";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-trello:before {
  content: "\F181";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-truck-loading:before {
  content: "\F4DE";
}

.fa-truck-monster:before {
  content: "\F63B";
}

.fa-truck-moving:before {
  content: "\F4DF";
}

.fa-truck-pickup:before {
  content: "\F63C";
}

.fa-tshirt:before {
  content: "\F553";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-tv:before {
  content: "\F26C";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-twitter:before {
  content:"";display:block;height:25px;width:25px;
  background-color:var(--ung-blue);
  mask:url(https://ung.edu/_uploads/css/2023/socials-twit.svg);
}

.fa-twitter:hover:before{background-color:white;}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-typo3:before {
  content: "\F42B";
}

.fa-uber:before {
  content: "\F402";
}

.fa-ubuntu:before {
  content: "\F7DF";
}

.fa-uikit:before {
  content: "\F403";
}

.fa-umbraco:before {
  content: "\F8E8";
}

.fa-umbrellA:before {
  content: "\F0E9";
}

.fa-umbrella-beach:before {
  content: "\F5CA";
}

.fa-uncharted:before {
  content: "\E084";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-undo:before {
  content: "\F0E2";
}

.fa-undo-alt:before {
  content: "\F2EA";
}

.fa-uniregistry:before {
  content: "\F404";
}

.fa-unity:before {
  content: "\E049";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-university:before {
  content: "\F19C";
}

.fa-unlink:before {
  content: "\F127";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-unsplash:before {
  content: "\E07C";
}

.fa-untappd:before {
  content: "\F405";
}

.fa-upload:before {
  content: "\F093";
}

.fa-ups:before {
  content: "\F7E0";
}

.fa-usb:before {
  content: "\F287";
}

.fa-user:before {
  content: "\F007";
}

.fa-user-alt:before {
  content: "\F406";
}

.fa-user-alt-slash:before {
  content: "\F4FA";
}

.fa-user-astronaut:before {
  content: "\F4FB";
}

.fa-user-check:before {
  content: "\F4FC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-clock:before {
  content: "\F4FD";
}

.fa-user-cog:before {
  content: "\F4FE";
}

.fa-user-edit:before {
  content: "\F4FF";
}

.fa-user-friends:before {
  content: "\F500";
}

.fa-user-graduate:before {
  content: "\F501";
}

.fa-user-injured:before {
  content: "\F728";
}

.fa-user-lock:before {
  content: "\F502";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-user-minus:before {
  content: "\F503";
}

.fa-user-ninjA:before {
  content: "\F504";
}

.fa-user-nurse:before {
  content: "\F82F";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-user-shield:before {
  content: "\F505";
}

.fa-user-slash:before {
  content: "\F506";
}

.fa-user-tag:before {
  content: "\F507";
}

.fa-user-tie:before {
  content: "\F508";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-users:before {
  content: "\F0C0";
}

.fa-users-cog:before {
  content: "\F509";
}

.fa-users-slash:before {
  content: "\E073";
}

.fa-usps:before {
  content: "\F7E1";
}

.fa-ussunnah:before {
  content: "\F407";
}

.fa-utensil-spoon:before {
  content: "\F2E5";
}

.fa-utensils:before {
  content: "\F2E7";
}

.fa-vaadin:before {
  content: "\F408";
}

.fa-vector-square:before {
  content: "\F5CB";
}

.fa-venus:before {
  content: "\F221";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-vest:before {
  content: "\E085";
}

.fa-vest-patches:before {
  content: "\E086";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-vial:before {
  content: "\F492";
}

.fa-vials:before {
  content: "\F493";
}

.fa-viber:before {
  content: "\F409";
}

.fa-video:before {
  content: "\F03D";
}

.fa-video-slash:before {
  content: "\F4E2";
}

.fa-viharA:before {
  content: "\F6A7";
}

.fa-vimeo:before {
  content: "\F40A";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-vimeo-v:before {
  content: "\F27D";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-virus:before {
  content: "\E074";
}

.fa-virus-slash:before {
  content: "\E075";
}

.fa-viruses:before {
  content: "\E076";
}

.fa-vk:before {
  content: "\F189";
}

.fa-vnv:before {
  content: "\F40B";
}

.fa-voicemail:before {
  content: "\F897";
}

.fa-volleyball-ball:before {
  content: "\F45F";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-mute:before {
  content: "\F6A9";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-vote-yeA:before {
  content: "\F772";
}

.fa-vr-cardboard:before {
  content: "\F729";
}

.fa-vuejs:before {
  content: "\F41F";
}

.fa-walking:before {
  content: "\F554";
}

.fa-wallet:before {
  content: "\F555";
}

.fa-warehouse:before {
  content: "\F494";
}

.fa-watchman-monitoring:before {
  content: "\E087";
}

.fa-water:before {
  content: "\F773";
}

.fa-wave-square:before {
  content: "\F83E";
}

.fa-waze:before {
  content: "\F83F";
}

.fa-weebly:before {
  content: "\F5CC";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-weight:before {
  content: "\F496";
}

.fa-weight-hanging:before {
  content: "\F5CD";
}

.fa-weixin:before {
  content: "\F1D7";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-whatsapp-square:before {
  content: "\F40C";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-whmcs:before {
  content: "\F40D";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-wind:before {
  content: "\F72E";
}

.fa-window-close:before {
  content: "\F410";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-wine-bottle:before {
  content: "\F72F";
}

.fa-wine-glass:before {
  content: "\F4E3";
}

.fa-wine-glass-alt:before {
  content: "\F5CE";
}

.fa-wix:before {
  content: "\F5CF";
}

.fa-wizards-of-the-coast:before {
  content: "\F730";
}

.fa-wodu:before {
  content: "\E088";
}

.fa-wolf-pack-battalion:before {
  content: "\F514";
}

.fa-won-sign:before {
  content: "\F159";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-wordpress-simple:before {
  content: "\F411";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-wpressr:before {
  content: "\F3E4";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-x-ray:before {
  content: "\F497";
}

.fa-xbox:before {
  content: "\F412";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-y-combinator:before {
  content: "\F23B";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-yammer:before {
  content: "\F840";
}

.fa-yandex:before {
  content: "\F413";
}

.fa-yandex-international:before {
  content: "\F414";
}

.fa-yarn:before {
  content: "\F7E3";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-yen-sign:before {
  content: "\F157";
}

.fa-yin-yang:before {
  content: "\F6AD";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-youtube-square:before {
  content: "\F431";
}

.fa-zhihu:before {
  content: "\F63F";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/_uploads/fonts/2021/webfonts/fa-brands-400.eot");
  src: url("/_uploads/fonts/2021/webfonts/fa-brands-400.eot") format("embedded-opentype"), url("/_uploads/fonts/2021/webfonts/fa-brands-400.woff2") format("woff2"), url("/_uploads/fonts/2021/webfonts/fa-brands-400.woff") format("woff"), url("/_uploads/fonts/2021/webfonts/fa-brands-400.ttf") format("truetype"), url("/_uploads/fonts/2021/webfonts/fa-brands-400.svg") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/_uploads/fonts/2021/webfonts/fa-regular-400.eot");
  src: url("/_uploads/fonts/2021/webfonts/fa-regular-400.eot") format("embedded-opentype"), url("/_uploads/fonts/2021/webfonts/fa-regular-400.woff2") format("woff2"), url("/_uploads/fonts/2021/webfonts/fa-regular-400.woff") format("woff"), url("/_uploads/fonts/2021/webfonts/fa-regular-400.ttf") format("truetype"), url("/_uploads/fonts/2021/webfonts/fa-regular-400.svg") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/_uploads/fonts/2021/webfonts/fa-solid-900.eot");
  src: url("/_uploads/fonts/2021/webfonts/fa-solid-900.eot") format("embedded-opentype"), url("/_uploads/fonts/2021/webfonts/fa-solid-900.woff2") format("woff2"), url("/_uploads/fonts/2021/webfonts/fa-solid-900.woff") format("woff"), url("/_uploads/fonts/2021/webfonts/fa-solid-900.ttf") format("truetype"), url("/_uploads/fonts/2021/webfonts/fa-solid-900.svg") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* #OK -Removed VP lists - Using Modified versions */

.ul-arrow LI, .ul-ban LI, .ul-checkbox LI, .ul-checklist LI,  .ul-yellow-plus LI, .ul-blue-plus LI {
  padding-left: 7px;
  position: relative;
  right: 4px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.ul-blue-circle LI, .ul-yellow-circle LI, .ul-teal LI {
  margin-bottom: 10px;
  line-height: 1.2;
}

.ul-arrow > LI::marker {
  color: var(--dark-blue);
  content: "\f0a9";
  font-family: FontAwesome;
}

.blue_bg .ul-arrow > LI::marker {
  color: #fff;
  content: "\f0a9";
  font-family: FontAwesome;
}

.section-expandable.white_bg DIV.wysiwyg .ul-arrow > LI::marker {
  color: var(--dark-blue);
  content: "\f0a9";
  font-family: FontAwesome;
}

.ul-ban > LI::marker {
  color: red;
  content: "\f05e";
  font-family: FontAwesome;
}

.ul-checklist > LI::marker {
  color: var(--lite-blue);
  content: "\f00c";
  font-family: FontAwesome;
}

.ul-checkbox > LI::marker,
.bullet-checkbox > LI::marker {
  color: var(--lite-blue);
  content: "\f096";
  font-family: FontAwesome;
}

.ul-blue-plus > LI::marker {
  color: var(--dark-blue);
  content: "\F067";
  font-family: FontAwesome;
}

.section-page.blue_bg .ul-blue-plus > LI::marker {
  color: #fff;
  content: "\F067";
  font-family: FontAwesome;
}

.ul-yellow-plus > LI::marker {
  color: var(--ung-gold);
  content: "\F067";
  font-family: FontAwesome;
}

.bullet-checkbox LI {
  padding-left: 8px;
}

UL.ul-blue-circle > LI, UL.ul-yellow-circle > LI, UL.ul-teal-circle > LI  {
  position: relative;
  padding: 0 0 0 22px;
  right: 20px;
  list-style-type: none;
}

UL.ul-blue-circle > LI:before {
  content: counter(LI);
  counter-increment: LI;
  height: 9px;
  width: 9px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: transparent;
  text-align: center;
  position: absolute;
  left: 3px;
  top: 7px;
  background-color: var(--dark-blue);
  box-shadow: 0 0px 0px 1px var(--dark-blue);
}

.blue_bg UL.ul-blue-circle > LI:before {
  content: counter(LI);
  counter-increment: LI;
  height: 9px;
  width: 9px;
  border: 1px solid var(--dark-blue);
  border-radius: 50%;
  color: transparent;
  text-align: center;
  position: absolute;
  left: 3px;
  top: 7px;
  background-color: #fff;
  box-shadow: 0 0px 0px 1px #fff;
}

UL.ul-teal-circle > LI:before {
  content: counter(LI);
  counter-increment: LI;
  height: 9px;
  width: 9px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: transparent;
  text-align: center;
  position: absolute;
  left: 3px;
  top: 7px;
  font-size: 7px;
  background-color: #fff;
  box-shadow: 0 0px 0px 2px var(--teal);
}

.blue_bg UL.ul-teal-circle > LI:before {
  content: counter(LI);
  counter-increment: LI;
  height: 9px;
  width: 9px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: transparent;
  text-align: center;
  position: absolute;
  left: 3px;
  top: 7px;
  font-size: 7px;
  background-color: var(--teal);
  box-shadow: 0 0px 0px 2px #fff;
}

UL.ul-yellow-circle > LI:before {
  content: counter(LI);
  counter-increment: LI;
  height: 9px;
  width: 9px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: transparent;
  text-align: center;
  position: absolute;
  left: 3px;
  top: 7px;
  font-size: 7px;
  background-color: #fff;
  box-shadow: 0 0px 0px 2px var(--ung-gold);
}
UL.ul-yellow-circle > LI:before {
  content: counter(LI);
  counter-increment: LI;
  height: 9px;
  width: 9px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: transparent;
  text-align: center;
  position: absolute;
  left: 3px;
  top: 7px;
  font-size: 7px;
  background-color: #fff;
  box-shadow: 0 0px 0px 2px var(--ung-gold);
}


.blue_bg UL.ul-yellow-circle > LI:before {
  content: counter(LI);
  counter-increment: LI;
  height: 9px;
  width: 9px;
  border: 1px solid var(--ung-gold);
  border-radius: 50%;
  color: transparent;
  text-align: center;
  position: absolute;
  left: 3px;
  top: 7px;
  font-size: 7px;
  background-color: var(--ung-gold);
  box-shadow: 0 0px 0px 2px #fff;
}


.OL-bold LI::marker {
  font-weight: 700;
}

OL.OL-bar {
  /* --start: attr(start); /* attr() Not yet accepted here. For now, set explicitly in the element's inline [style] attribute as desired: <OL style="--start:2" class="my-class"> */
  counter-reset: liCnt calc(var(--start,1) - 1); /* "- 1" because it's idx-0. calc(var(--start,1) - 1);*/
  list-style-type: none;
  padding-left: 8px;
}

OL.OL-bar > LI {
  position: relative;
  padding: 16px 0 12px 48px;
  counter-increment: liCnt;
}

OL.OL-bar > LI:before {
  content: counters(liCnt, ".") ". ";
  height: 33px;
  width: 39px;
  border-right: 2px solid var(--teal);
  color: #023188;
  text-align: center;
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 700;
  font-size: 25px;
  line-height: 36px;
  font-style: italic;
}

.blue_bg OL.OL-bar > LI:before {
  content: counters(liCnt, ".") ". ";
  height: 33px;
  width: 39px;
  border-right: 2px solid var(--teal);
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 700;
  font-size: 25px;
  line-height: 36px;
  font-style: italic;
}


OL.OL-circle {
  counter-reset: LI;
  list-style-type: none;
  padding-left: 10px;
}

OL.OL-circle > LI {
  position: relative;
  padding: 16px 0 16px 48px;
}

OL.OL-circle > LI {
  position: relative;
  padding: 16px 0 0px 48px;
}

.row OL.OL-circle LI {
  margin-bottom: 6px;
}

OL.OL-circle UL LI {
  list-style-type: initial;
}


OL.OL-circle > LI:before {
  content: counter(LI);
  counter-increment: LI;
  height: 32px;
  width: 32px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  top: 11px;
  font-weight: 700;
  font-size: 14px;
  background-color: #023188;
  box-shadow: 0 0px 0px 1px rgba(2, 49, 136, 1);
  line-height: 26px;
  }

.h1, .h2, .h3, .h4, .h5, .h6, H1, H2, H3, H4, H5, H6 {
  color: var(--ung-blue);
  margin: 10px 0;
}

SECTION.blue_bg.section-page DIV.wysiwyg H2,
SECTION.blue_bg.section-page DIV.wysiwyg H3,
SECTION.blue_bg.section-page DIV.wysiwyg H4,
SECTION.blue_bg.section-page DIV.wysiwyg H5,
SECTION.blue_bg.section-page DIV.wysiwyg H6 {
  color: #fff;
}

SECTION.blue_bg.section-text DIV.wysiwyg H2,
SECTION.blue_bg.section-text DIV.wysiwyg H3,
SECTION.blue_bg.section-text DIV.wysiwyg H4,
SECTION.blue_bg.section-text DIV.wysiwyg H5,
SECTION.blue_bg.section-text DIV.wysiwyg H6 {
  color: #fff;
}

SECTION.blue_bg.section-page DIV.liteblue_bg DIV.wysiwyg H2,
SECTION.blue_bg.section-page DIV.liteblue_bg DIV.wysiwyg H3,
SECTION.blue_bg.section-page DIV.liteblue_bg DIV.wysiwyg H4,
SECTION.blue_bg.section-page DIV.liteblue_bg DIV.wysiwyg H5,
SECTION.blue_bg.section-page DIV.liteblue_bg DIV.wysiwyg H6 {
  color: var(--body-text);
}

/* remove ? - OK - 7/27/21
.wysiwyg h2:first-of-type, 
.wysiwyg h3:first-of-type, 
.wysiwyg h4:first-of-type,
.wysiwyg h5:first-of-type, 
.wysiwyg h6:first-of-type {
  margin: 0 0 10px 0;
}
*/

.h1, .h2, .h3, .h4, H1, H2, H3, H4 {
   font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
   font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
}

.h5, H5, .h6, H6 {
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  font-style: normal;
}

.serif-hdr {
  font-family: var(--baseSerifFont); /* was: "Sentinel Black" | EN - 2025/10/18 */
  font-weight: 900;
}

.h1, H1 {
  font-size: 2.625rem;
}
@media (max-width: 767.98px) {
  .h1, H1 {
    font-size: 2rem;
  }
}

.h2, H2 {
  font-size: 2.25rem;
}
@media (max-width: 767.98px) {
  .h2, H2 {
    font-size: 1.75rem;
  }
}

FIGCAPTION H2.size-18 {
  font-family: var(--baseSansFont);
    font-weight: 700;
}


.h3, H3 {
  font-size: 1.75rem;
}
@media (max-width: 767.98px) {
  .h3, H3 {
    font-size: 1.5rem;
  }
}

.h4, H4 {
  font-size: 1.5rem;
}

.h5, H5 {
  font-size: 1.125rem;
}

.h6, H6 {
  font-size: 1rem;
}

.related-h {
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
  display: inline-grid;
  line-height: 2;
  padding: 0 15px;
  font-size: 12px;
}

.related-h-rule:after {
  content: "";
  height: 1px;
  width: 100%;
  background: var(--ung-blue);
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.sentinel-font { font-family: "sentinel"; font-weight: bold; } /* was: "Sentinel-Bold" | EN - 2025/10/18 */
.gothic-font{ font-family: var(--baseSansFont) !important; font-weight: bold; } /* was: Gotham Bold | EN - 2025/10/18 */
.gothicbook-font{ font-family: var(--baseSansFont) !important } /* was: Gotham Book | EN - 2025/10/18 */ 
.gothicmedium-font{ font-family: var(--baseSansFont) !important } /* was: Gotham Medium | EN - 2025/10/18 */ 

/* OK - removed !important on white,yellow, & blue so can override with declaritive for backgrounds */

.text-blue  { color: var(--ung-blue) }
.text-gold  { color: var(--ung-gold) !important }
.text-yellow{ color: #FBC82E }
.text-black { color: #272727 }
.text-white { color: #fff }

P {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 400;
  font-style: normal;
}

/* 
#OK - temporary - might be better solution
.blue_bg > .container > h2.text-blue, .blue_bg .container h2.text-blue {
  color: #fff
}
 */
 

.panel-body SECTION.blue_bg :is(P,LI){ color: #fff }

/* OK Remove later 
section-page.blue_bg p, section-page.blue_bg  {
 color: #fff;
}
*/

/* #OK - 6/11/21 */
.section-text.white_bg :is(P,LI){ color:var(--body-text) }
.section-text.white_bg DIV.wysiwyg A{ color: var(--dark-blue) }
.accordion-container.white_bg.container .panel-body .wysiwyg P { color: var(--body-text) }
.accordion-container.white_bg.container .panel-body .blue_bg.section-expandable .row .wysiwyg P { color: #fff }
.accordion-container.white_bg.container .panel-body .wysiwyg :is(.tbl-bh-alt,.tbl-bh-hz,.tbl-bh-all) TH P{ color: #fff }

.fullw_section {
 width: 100%;
 padding: 5px 0;
}

/*#OK  section spacing - 6/10/21 */
.section-page {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

/*#OK  h1 spacing page-title -  7/19/21 */
SECTION.fluid-container.title-wrapper H1.page-title {
 /* margin-top: -4px;*/
  margin-bottom: -4px;
}

/*#OK  h1 spacing page-title - news date -  7/20/21 */

DIV.col-md-8.offset-md-2 SECTION.fluid-container.title-wrapper {
  margin-top: -16px;
  margin-bottom: 8px;
}


/*#OK  9/24/21 */
 SECTION.section-expandable, SECTION.section-text.grey_bg, SECTION.section-text.white_bg, SECTION.section-text.lightgrey_bg, SECTION.section-text.liteblue_bg, SECTION.section-text.blue_bg, SECTION.section-tab-left {
    padding: 0 10px;
}

SECTION.section-text {
    margin: 0 0 1rem 0;
}

.section-text H2, .section-text H3, .section-text H4 {
  margin: 0 0 10px 0;
}

/*OK */
SECTION.litegrey_bg.section-text {
    padding: 6px;
}

.section-text > .container {
 padding: 0;
}

 /* - Remove Later? - #OK
.section-text.white_bg .container:first-of-type,
.section-text.grey_bg .container:first-of-type,
.section-text.blue_bg .container:first-of-type,
.section-text.liteblue_bg .container:first-of-type,
.section-text.litegrey_bg .container:first-of-type {
 padding: 12px 1rem 0;
 margin-bottom: 1rem; 
}
*/

.blue_bg {
  background-color: var(--ung-blue);
}

.section-text > .container {
  padding: 0;
}


/*=========
#OK - make P and LI text white by default on blue bg
===========*/

.blue_bg :is(P,LI) { color: #fff }

:is(.blue_bg.section-tab-left,.blue_bg.section-tab-top) .container .wysiwyg A{ color: var(--teal) }
.section-tab-top .container .wysiwyg A { color: var(--ung-blue) } 
.section-page .tabs-container .section-tab-top .container .wysiwyg A:hover { color: var(--ung-blue) } 
.section-page .tabs-container .section-tab-top.blue_bg .container .wysiwyg A:hover { color: var(--teal) } 

.section-tab-left .container .wysiwyg P{color: var(--body-text) }
.blue_bg.section-tab-left .container .wysiwyg P{ color: #fff }

.blue_bg .card A{ color: var(--dark-blue) }
.blue_bg P A:not(.btn) {
  color: var(--dark-gray);
}

DIV.blue_bg > .wysiwyg H2, DIV.blue_bg > .wysiwyg H3, DIV.blue_bg > .wysiwyg H4, DIV.blue_bg > .wysiwyg H5, DIV.blue_bg > .wysiwyg H6 {
  color:#fff
}

.white_bg P, .white_bg LI, .liteblue_bg P, .liteblue_bg LI, .litegrey_bg P, .litegrey_bg LI, .grey_bg P, .grey_bg LI {
  color: var(--body-text);
}

.white_bg .blue_bg P, .white_bg .blue_bg LI {
  color: #fff
}

/*=========
#OK - make p LI text white by default on blue bg in card
===========*/

.blue_bg .card P, .blue_bg .card LI {
  color: var(--body-text);
} 

.liteblue_bg {
  background-color: var(--lite-blue);
}

.litegrey_bg {
    background-color: var(--lite-gray);
}

.lightgrey_bg {
    background-color: var(--lite-gray);
}

.grey_bg {
  background-color: var(--medium-gray);
}

.yellow_bg {
  background-color: var(--ung-gold);
}

.white_bg {
  background-color: #fff;
}

.box-shadow {
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
}

/* #OK - removed box-shadow of inner when att card is inside att slider - degree cards */
.slick-container .card.pl-4.pr-4.box-shadow .card.no-flex.box-shadow {
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.0);
}

.slick-container .card.pt-3.pb-4.pr-4.pl-4.no-flex.box-shadow {
    padding-bottom: 0 !important;
}



.Aligner {
  display: flex;
  align-items: flex-start;
}

.Aligner-item {
  max-width: 50%;
  padding-bottom: .75rem;
}

.Aligner-item--top {
  align-self: flex-start;
}

.Aligner-item--bottom {
  align-self: flex-end;
}

.equal-h-col-wrap {
  display: flex;
  width: 100%;
}

.equal-h-col {
  flex: 1;
}

@media (max-width: 768px) {
  .Aligner {
    display: block;
  }
}
/* background image section */
.bg-img-sec {
  background-size: cover;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
}

.overlay-gradient {
  box-sizing: border-box;
  height: 100%;
  background-image: linear-gradient(to left, #000, transparent);
}

.overlay-blue {
  box-sizing: border-box;
  height: 100%;
  background-color: rgba(171, 185, 212, 0.6);
}

.overlay-ung-blue {
  background-color: rgb(0, 47, 135, 0.6);
}

.overlay-dark-blue {
  background-color: rgb(1, 38, 96, 0.8);
}

/* #OK- gradient direction on images with gradient overlay */
.gradient-top {
    background-image: linear-gradient(to top, transparent, #000);
  }
.gradient-bottom {
  background-image: linear-gradient(to bottom, transparent, #000);
  }
.gradient-left {
  background-image: linear-gradient(to left, transparent, #000);
  }
.gradient-right {
  background-image: linear-gradient(to right, transparent, #000);
  }
  
.img-caption.gradient-bottom {
   background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.95) 100%);
}

.slick-container .card.card-transparent .card.clear-caption .card.no-flex.box-shadow .img-gradient-wrap .img-caption.gradient-bottom {
     background: linear-gradient(180deg, rgba(0,0,0,0) 73%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0.7) 87%, rgba(0,0,0,0.95) 95%);
}

.home .gradient-left {
   background: linear-gradient(to left, transparent, 70%, #000);
  }
  
 .home .gradient-right {
   background: linear-gradient(to right, transparent, 70%, #000);
  }

/* margins */
.mr-10, .mx-10 {
  margin-right: 6rem !important;
}

.custom-select {
  border-radius: 0;
}

.dropdown-custom .dropdown-toggle {
  width: 100%;
  text-align: left;
}
.dropdown-custom .dropdown-toggle::after {
  display: none;
}
.dropdown-custom I {
  position: absolute;
  right: 15px;
  top: 12px;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .dropdown-custom I {
    top: 15px;
  }
}
.dropdown-custom .dropdown-menu {
  background-color: var(--dark-gray);
  border-radius: 0;
  font-size: 12px;
  top: -5px !important;
  left: 0px;
  border: 0;
}
.dropdown-custom .btn-cancel {
  font-family: var(--baseSansFont) !important; /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
  color: var(--dark-blue) !important;
  font-size: 16px !important;
  text-decoration: none !important;
  margin: 7px 0 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
@media (max-width: 767.98px) {
  .dropdown-custom .btn-cancel {
    margin-bottom: 20px !important;
  }
}
.dropdown-custom .btn-apply {
  padding: 5px 13px;
  font-size: 16px;
}
.dropdown-custom.dropdown .dropdown-menu {
  min-width: 300px;
}
.dropdown-custom .btn {
  display: inline-block !important;
  border: 1px solid #fff;
  background-color: #fff;
  color: #272727;
}
.dropdown-custom .checkbox-menu LI LABEL {
  display: block;
  padding: 10px 15px;
  clear: both;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  margin: 0;
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  cursor: pointer;
}
.dropdown-custom .checkbox-menu INPUT {
  position: relative;
  top: 1px;
  cursor: pointer;
}

.dropdown-toggle:hover I {
  -webkit-transition: none !important;
  transform: translateX(0) !important;
}

.related-links.no-icon A {
  padding-left: 12px !important;
  /*text-indent: -15px; */
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */ /* removed `!important;` | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  line-height: 1.4;
}

.related-links.icon-link A {
  padding-left: 30px !important;
  text-indent: -15px; 
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */ /*removed !important; | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  line-height: 1.4;
}

.row .related-links LI A:hover {
  color: #0250E5;
  text-decoration: underline;
}

.section-page.blue_bg .row .related-links LI A:hover {
  color: #0250E5;
}

/* #OK - adjusted for no icons - text more left aligned */

.related-links.no-icon LI A I {
  padding-left: 0px;
  padding-right: 0px
}


.related-links.icon-link LI A I {
  padding-left: 8px;
  padding-right: 6px; /* #OK - was 12 - adjusted for wrapping text */
}

UL.rl-underline {
  list-style: none;
  padding: 0;
  margin: 0;
}
UL.rl-underline LI {
  margin-bottom: 3px;
}
UL.rl-underline LI A {
  display: block;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  padding: 8px 0;
  color: var(--ung-blue);
  text-decoration: underline;
  text-transform: none;
}

/* 
#OK - Rules for directory type listings 
*/

UL.rl-underline.folder-listing LI A {
  display: inline-block;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  padding: 8px 0;
  color: var(--ung-blue);
  text-decoration: none;
  text-transform: none;
}
UL.rl-underline.folder-listing LI A:hover {
    text-decoration: underline;
    color: var(--dark-blue);
}

.folder-listing .btn-expander {
  display: inline-block;
  margin-left: 4px;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.folder-listing I {
  font-size: small;
}

.folder-listing I:hover {
  font-size: large;
}

.folder-listing .exp {
  display: none;
}
.folder-listing .coll {
  display: inline-block;
}
.folder-listing .collapsed .exp {
  display: inline-block;
}
.folder-listing .collapsed .coll {
  display: none;
}

UL.rl-boldnone {
  list-style: none;
  padding: 0;
  margin: 0;
}
UL.rl-boldnone LI {
  margin-bottom: 10px;
}
UL.rl-boldnone LI A {
  display: block;
  padding: 8px 0;
  font-weight: normal;
  text-decoration: underline;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}

UL.rl-grey {
  list-style: none;
  padding: 0;
  margin: 0;
}
UL.rl-grey LI {
  margin-bottom: 3px;
}
UL.rl-grey LI A {
  display: block;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  padding: 8px;
  color: var(--ung-blue);
  text-decoration: underline;
  text-transform: none;
  background-color: var(--dark-gray);
}

UL.rl-darkblue {
  list-style: none;
  padding: 0;
  margin: 0;
}
UL.rl-darkblue LI {
  margin-bottom: 3px;
}
UL.rl-darkblue LI A {
  display: block;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  padding: 8px;
  color: #fff;
  text-decoration: underline;
  text-transform: none;
  background-color: var(--ung-blue);
  position: relative;
}
UL.rl-darkblue LI A I {
  color: var(--ung-gold);
}
.row UL.rl-darkblue LI A:hover {
  color: var(--dark-gold);
}
UL.rl-darkblue LI A:hover I {
  color: #fff;
}

UL.rl-greybordered {
  list-style: none;
  padding: 0;
  margin: 0;
}
UL.rl-greybordered LI {
  margin-bottom: 3px;
}

.accordion-container .panel-group.accordion-inner-grey UL.rl-greybordered LI A {
 background-color: #fff;
}

UL.rl-greybordered LI A {
  display: block;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  padding: 8px;
  color: var(--ung-blue);
  text-decoration: underline;
  text-transform: none;
  background-color: var(--dark-gray);
  border-left: solid 5px var(--teal);
}

UL.rl-outline {
  list-style: none;
  padding: 0;
  margin: 0;
}
UL.rl-outline LI {
  margin-bottom: 3px;
}
UL.rl-outline LI A {
  display: block;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  padding: 8px;
  color: var(--ung-blue);
  text-decoration: underline;
  text-transform: none;
  background-color: transparent;
  border-left: solid 1px var(--teal);
  border-top: solid 1px var(--teal);
  border-bottom: solid 1px var(--teal);
  border-right: solid 1px var(--teal);
}

UL.rl-outlinebordered {
  list-style: none;
  padding: 0;
  margin: 0;
}
UL.rl-outlinebordered LI {
  margin-bottom: 3px;
}
UL.rl-outlinebordered LI A {
  display: block;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  padding: 8px;
  color: var(--ung-blue);
  text-decoration: underline;
  text-transform: none;
  background-color: transparent;
  border-left: solid 5px var(--teal);
  border-top: solid 1px var(--teal);
  border-bottom: solid 1px var(--teal);
  border-right: solid 1px var(--teal);
}

.link-underline {
  font-weight: normal;
  text-decoration: underline;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}

.rl-links.link-underline {
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
}

.blue_bg .toggleAccordionShow, .blue_bg .toggleAccordionHide {
  border: 1px solid var(--teal);
}

.toggleAccordionShow, .toggleAccordionHide {
  opacity: 0.7;
  padding: 6px 10px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  width: auto;
}

.simple-pagination I {
  line-height: normal;
  font-size: 12px;
}
.simple-pagination LI.page-item {
  padding: 0 15px 0 0;
}
.simple-pagination LI.page-item .page-link {
  border-radius: 0;
  border: solid 1px #3B3B3B;
  background-color: transparent;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
  color: #3B3B3B;
  line-height: normal;
}
.simple-pagination LI.page-item .page-link:hover, .simple-pagination LI.page-item .page-link:focus {
  background-color: #3B3B3B;
  color: #fff;
}
.simple-pagination LI.page-item .page-link.active {
  background-color: var(--ung-blue);
  color: #fff;
}
.simple-pagination LI.page-first .page-link, .simple-pagination LI.page-last .page-link {
  border: none;
  text-decoration: underline;
}
.simple-pagination LI.page-first .page-link:hover, .simple-pagination LI.page-first .page-link:focus, .simple-pagination LI.page-last .page-link:hover, .simple-pagination LI.page-last .page-link:focus {
  background-color: transparent;
  color: var(--ung-blue);
}
.simple-pagination LI.page-first .page-link.active, .simple-pagination LI.page-last .page-link.active {
  background-color: transparent;
  color: #3B3B3B;
}
.simple-pagination LI.pages-random .page-link {
  border: none;
  text-decoration: none;
}
.simple-pagination LI.pages-random .page-link:hover, .simple-pagination LI.pages-random .page-link:focus {
  background-color: transparent;
  color: #3B3B3B;
}
.simple-pagination LI.pages-random .page-link.active {
  background-color: transparent;
  color: #3B3B3B;
}

/* Pagination Dots */
.pagination-dot-wrap {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  text-align: center;
}
.pagination-dot-wrap .pagination__dot-previous, .pagination-dot-wrap .pagination__dot-next {
  position: relative;
  font-size: 28px;
  line-height: normal;
  display: inline-block;
  cursor: pointer;
  margin: 0 14px;
  color: var(--ung-blue);
}
.pagination-dot-wrap .pagination__dot {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ung-blue);
  border-radius: 100px;
  display: inline-block;
  cursor: pointer;
  margin: 0 4px;
  transition: 0.3s;
  background: #E5E5E5;
}
.pagination-dot-wrap .pagination__dot SPAN {
  display: none;
}
.pagination-dot-wrap .pagination__dot--active {
  background: var(--ung-gold);
}
.pagination-dot-wrap .pagination__dot:hover {
  transition: 0.3s;
  border-color: var(--ung-blue);
  background: var(--ung-gold);
}
.pagination-dot-wrap .pagination__dot:hover:before {
  top: -48px;
  opacity: 1;
}
.pagination-dot-wrap .pagination__dot:hover:after {
  top: -18px;
  opacity: 1;
}

.pagination-dot-wrap.pagination-darkbg .pagination__dot-previous,
.pagination-dot-wrap.pagination-darkbg .pagination__dot-next {
  color: #fff;
}
.pagination-dot-wrap.pagination-darkbg .pagination__dot {
  border: 2px solid #fff;
  background: #E5E5E5;
}
.pagination-dot-wrap.pagination-darkbg .pagination__dot--active {
  background: var(--ung-gold);
}
.pagination-dot-wrap.pagination-darkbg .pagination__dot:hover {
  border-color: var(--ung-blue);
  background: var(--ung-gold);
}
.pagination-dot-wrap.pagination-darkbg .pagination__dot:hover:before {
  top: -48px;
  opacity: 1;
}
.pagination-dot-wrap.pagination-darkbg .pagination__dot:hover:after {
  top: -18px;
  opacity: 1;
}

.card.no-flex {
  display: inherit;
}

/* #OK - puts image in center of card width if not large enough WIL */
.card.no-flex.box-shadow IMG {
    display:block;
    margin: auto;
}

/* #OK - color card */
.card.blue_bg .card-content.default LI {
    color: #fff;
}

.card-content.blue_bg, .card-content.blue_bg LI {
    color: #fff;

}

.card-hover {
  /*border: solid 2px #fff !important;*/
}

.card-hover:hover {
  border: solid 2px var(--ung-gold) !important;
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.3);
}

.captitle {
  color: var(--ung-blue);
  text-transform: capitalize;
  margin: 10px 0;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold; /* Added to accommodate the font update above. | EN - 2025/10/18 */
}

.card {
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}

/* OK - gives a bit of space below bio card on profile page */
.fs-bio .card.faculty-card {
  margin-bottom: 1.2rem;
}

.card P, .card LI {
  color: var(--body-text);
}

.card .faculty-img {
  max-width: 200px;
}
.card .faculty-img.faculty-img-none {
  width: 30%;
}

/* #OK - Removes centered text in card body */
.card-body SPAN  {
  text-align: left; 
  display: inline-block;
}

/* #OK - adjusts news carousel using border-trans */
.slide .card.no-flex.box-shadow.pb-4.border-trans {
    margin-top: 20px;
}

/* #OK put IMG in center of carousel on news WIL feed */
.slide .card.no-flex.box-shadow.pb-4.border-trans IMG {
  margin: 0 auto;
}


/* #OK - Declaritive */
.card-body.blue_bg H3, .card-body.blue_bg H4, .card-body.blue_bg H5, .card-body.blue_bg H6 {
  color: #fff;
}

.slick-container .card-content {
 padding-top: 0;
}

.carousel .card-content {
  padding-top: 0;
}

.carousel .card-body {
  padding-top: 8px;
  padding-bottom: 4px;
}

.slick-container .card-body {
  padding-top: 0;
  Padding-bottom: 6px;
}

/* #OK - Adjustments on card spacing IMG-card-content */
FIGCAPTION .card-body {
  padding: .2rem 20px 0rem 20px; 
}

.card.no-flex.box-shadow.secondary-news-item .card-body SPAN {
    padding: 1rem 0;
}

/* #OK - modified bottom to 12px */
.card-content {
    padding: 0 20px 0px 20px;
}

.card-content.default {
    color: var(--body-text);
}

.row .card FIGCAPTION .card-content A:not(.btn) {
  text-decoration: underline;
}

.row .card FIGCAPTION .card-content A:not(.btn):hover {
  text-decoration: none;
}



.card-content.blue_bg P {
  color: #fff;
}

/* #OK */ 
.card.no-flex.box-shadow.pb-4.border-trans {
    margin-top: 1rem;
}

.news-fd .fd-card .card.no-flex.box-shadow.pb-4.border-trans {
  padding-bottom: 0 !important;
}

.carousel .border-trans IMG {
  display:block;
  margin: auto;
}
.card P {
  margin-bottom: 1rem; /* #OK - was 0, now 1rem to give spacing under P for UL and etc */
 font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
 font-weight: 400;
 font-style: normal;
}
.card.faculty-card H6 {
    font-size: 18px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  color: var(--ung-blue);
  padding-bottom: 2px;
}
.card.faculty-card H6 A {
  text-decoration: underline !important;
  font-size: 18px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  color: var(--ung-blue);
}
.card.faculty-card H6 A:hover {
  text-decoration: none !important;
}

.slick-slide .card {
  border: 0;
  margin: 0 0 1rem 0;
}
.slick-slide .card:hover {
  border: 0 !important; /* EN 2025-06-06: Why? */
  box-shadow: none; /* EN 2025-06-06: Why? */
}

.faculty-card P {
  margin-bottom: 8px;
}

.card-transparent {
  background-color: transparent;
}

@media (min-width: 900px) {
  .card-offset-bottom {
    margin-bottom: -150px;
  }
}
.faculty-card H6 {
  margin-bottom: 0;
  margin-top: -2px;  /* OK - bring up fac info slightly up - 6/11/21 */
  line-height: 1.2; /* OK - was 1px - 6/11/21 */
}

/* OK - FS cards stack at 992 - 6/15/21*/

@media (max-width: 992px) {
    .fs-listing-card .col-md-6 {
     flex: 0 0 100%;
     max-width: 100%;
  }
}

/* OK - profile image adjustment  6/15/21*/

.fs-listing-card .faculty-card IMG {
  min-width: 125px;
}

.feed-post A:hover {
  color: #0250E5;
}

.table .thead-dark TH {
  color: #fff;
  background-color: #0C2F87;
  border-color: transparent;
  font-weight: normal;
}

.table .thead-dark {
  border: solid 3px #0C2F87;
}

.table A {
  text-decoration: underline;
}

.table .thead-liteBlue TH {
  color: #0C2F87;
  background-color: var(--lite-blue);
  border-color: transparent;
  font-weight: normal;
}

.table .thead-liteBlue {
  border: solid 3px var(--lite-blue);
}

.table A {
  text-decoration: underline;
}

.single-col-blk {
  max-width: 800px;
  margin: auto;
  padding: 30px;
}

/* Glyph, by Harry Roberts */
.hr-style {
  overflow: visible;
  /* For IE */
  padding: 0;
  border: none;
  border-top: solid 2px #FBC82E;
  position: relative;
}

.hr-style.hr-blue {
  overflow: visible;
  /* For IE */
  padding: 0;
  border: none;
  border-top: solid 2px var(--ung-blue);
  position: relative;
}

.hr-style::after {
  content: "ooo";
  display: inline-block;
  position: absolute;
  top: -11px;
  font-size: 12px;
  padding: 0 0.25em;
  background: #fff;
  font-family: "Arial", sans-serif;
  letter-spacing: 2px;
  right: 0;
  color: #FBC82E;
  font-weight: bold;
}

.hr-style.hr-blue::after {
  color: var(--ung-blue);
}

.hr-style.hr-bgGrey::after, .hr-style.hr-bgGrey::before {
  background: var(--lite-gray);
}

SECTION.section-page.white_bg .hr-style.hr-bgGrey::after, SECTION.section-page.white_bg.hr-style.hr-bgGrey::before {
  background: #fff;
}

.hr-style::before {
  content: "ooo";
  display: inline-block;
  position: absolute;
  top: -11px;
  font-size: 12px;
  padding: 0 0.25em;
  background: #fff;
  font-family: "Arial", sans-serif;
  letter-spacing: 2px;
  left: 0;
  color: #FBC82E;
  font-weight: bold;
}

.hr-style.hr-blue::before {
  color: var(--ung-blue);
}

SECTION.section-page.white_bg .hr-style.hr-blue::before {
  background-color: #fff;
}

FIGCAPTION {
  padding: 10px;
  line-height: 20px;
}

.p10 {
  padding: 10px;
}

.outer-circle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #484c55;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  text-rendering: optimizeLegibility;
  text-align: center;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  background: transparent;
  border: 15px solid var(--ung-gold);
  width: 240px;
  height: 240px;
  border-radius: 260px;
  padding: 18px;
  margin: 0 auto 16px auto;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .outer-circle {
    width: 230px;
    height: 230px;
  }
}

.outer-circle .card-title {
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  text-align: center;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0.75rem;
  font-size: 50px;
  font-family: var(--baseSerifFont); /* was: "Sentinel-Semibold" | EN - 2025/10/18 */
  font-style: italic;
  color: var(--dark-blue);
  letter-spacing: -2px;
  vertical-align: middle;
  width: 175px;
  height: 175px;
  display: table-cell;
  background: #fff;
  border-radius: 300px;
  border: 0;
  box-shadow: 0px 0px 0px 5px var(--ung-gold);
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .outer-circle .card-title {
    width: 175px;
    height: 175px;
  }
}

/* #OK = icon-card - wysiwyg icons */

.ppoint-lg-text {
  line-height: 0.5;
  text-rendering: optimizeLegibility;
  margin-bottom: 1.5rem;
  /*margin-top: 1rem;*/
  font-size: 50px;
  font-family: var(--baseSansFont); /* was: Gotham bold | EN - 2025/10/18 */
  font-weight: 400;
  font-style: italic;
  color: var(--dark-blue);
  letter-spacing: -2px;
}

.icon-card P:first-of-type {
  line-height: 1;
  text-rendering: optimizeLegibility;
  font-family: var(--baseSansFont); /* was: Gotham book | EN - 2025/10/18 */
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--dark-blue);
   
}

.icon-card.ic-txt-sml P:first-of-type {
  font-size: 25px;
  line-height: 1;
  margin-bottom: .5rem;
}


.icon-card.ic-txt-med P:first-of-type {
  font-size: 36px;
  line-height: 1;
  margin-bottom: .5rem;
}

.icon-card.ic-txt-lg P:first-of-type {
  font-size: 50px;
  line-height: 1;
  margin-bottom: .5rem;
}

.blue_bg .icon-card P:first-of-type {
  color: var(--ung-gold)
}

.blue_bg .ppoint-lg-text {
  color: var(--ung-gold);
}

.card.card-hover.pt-3.pb-4.pr-4.pl-4.no-flex.box-shadow .icon-card P:first-of-type {
  color: var(--ung-blue);
}


/* #OK - Home Page */

.homepage-banner SPAN P { 
  color: #fff;
}


/* */

/* #OK - temp fix - clean up later */
.ppoints.blue_bg.text-white H2.text-blue, .ppoints.blue_bg.text-white H3.text-blue, .ppoints.blue_bg.text-white H4.text-blue, .ppoints.blue_bg.text-white H5.text-blue {
    color:#fff
}

.icon-card P:nth-of-type(2), .points-of-pride-text{
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
}

 .points-of-pride-text { margin: 15px 0 18px 0 }

.icon-card {
  text-align: center;
  margin: auto;
  padding: 1rem 0 .5rem 0;
}

.icon-card IMG {
  display: inline-block;
  margin: 0 auto 16px auto;
}

/* #OK - Proof points */

.ppoints .lead.m-auto {
  padding: .8rem 0 1.2rem 0;
}

.ctaLinks-wrap {
  /*margin-bottom: 25px; VP Set */
  display: inline-block;
  margin-top: 1rem;
}

.row .ctaLinks-wrap A {
  text-decoration: none;
}
/*
#OK - adds underline to text under bar on hover 
*/

.ctaLinks-wrap .cta-title {
  color: var(--ung-blue);
  text-transform: capitalize;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400;
  line-height: 1.2;
  color: var(--ung-blue);
  font-size: 24px;
  padding-bottom: 10px;
  margin-bottom: 8px;
  /* text-decoration: none; */
}
.ctaLinks-wrap .cta-title HR {
  border-bottom: 1px solid var(--ung-blue);
  margin: 8px 0 5px;
}
@media (max-width: 991.98px) {
  .ctaLinks-wrap .cta-title {
    font-size: 18px;
  }
}
.ctaLinks-wrap .cta-title .ctalink {
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}
@media (max-width: 991.98px) {
  .ctaLinks-wrap .cta-title .ctalink {
    font-size: 16px;
  }
}
.ctaLinks-wrap .cta-title.text-white HR {
  border-bottom: 1px solid white;
  margin: 8px 0 5px;
}
.ctaLinks-wrap .cta-link {
  color: var(--ung-blue);
  text-transform: capitalize;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .ctaLinks-wrap .cta-link {
    font-size: 16px;
  }
}
.ctaLinks-wrap .cta-link:hover {
  /* text-decoration: none; */
}
.ctaLinks-wrap .cta-link:hover .ctalink {
  text-decoration: underline;
}
.ctaLinks-wrap .cta-link:hover I,
.ctaLinks-wrap .cta-link:focus I {
  -webkit-transition: all 0.3s ease;
  transform: translateX(7px);
}

/* #OK - Related Link icons */


@media (min-width: 768px) {
  .ctaLinks-wrap A[target="_blank"].cta-link:hover I:before,
  .ctaLinks-wrap A[target="_blank"].cta-link:focus I:before {
          font-family: "Font Awesome 5 Free"; 
        content: "\f35d"; 
        font-weight: 900; 
        margin-left: -5px;
        position: relative;
        bottom: 1.5px; 
        display: inline-block; 
        font-size: small;
  }

  .ctaLinks-wrap A.lock.cta-link:hover I:before,
  .ctaLinks-wrap A.lock.cta-link:focus I:before {
          font-family: "Font Awesome 5 Free"; 
        content: "\f023"; 
        font-weight: 900; 
        margin-left: -5px;
        position: relative;
        bottom: 2px; 
        display: inline-block; 
        font-size: 14px;
  }

  .ctaLinks-wrap A[target="_blank"].lock.cta-link:hover I:before,
  .ctaLinks-wrap A[target="_blank"].lock.cta-link:focus I:before  {
          font-family: "Font Awesome 5 Free"; 
        content: "\f023  \f35d"; 
        font-weight: 900; 
        margin-left: -5px;
        position: relative;
        bottom: 2px; 
        display: inline-block; 
        font-size: 12px;
  }
}


@media (max-width: 768px) {
  .ctaLinks-wrap A[target="_blank"].cta-link I:before {
          font-family: "Font Awesome 5 Free"; 
        content: "\f35d"; 
        font-weight: 900; 
        position: relative;
        bottom: 1.5px; 
        display: inline-block; 
        font-size: small;
  }

  .ctaLinks-wrap A.lock.cta-link I:before {
          font-family: "Font Awesome 5 Free"; 
        content: "\f023"; 
        font-weight: 900; 
        position: relative;
        bottom: 2px; 
        display: inline-block; 
        font-size: 14px;
  }

  .ctaLinks-wrap A[target="_blank"].lock.cta-link I:before {
          font-family: "Font Awesome 5 Free"; 
        content: "\f023  \f35d"; 
        font-weight: 900; 
        position: relative;
        bottom: 2px; 
        display: inline-block; 
        font-size: 12px;
  }
}

.blue_bg.pb-4 .ctaLinks-wrap .cta-title {
  color:#fff;
}

.blue_bg.pb-4 .ctaLinks-wrap .cta-title HR {
  border-bottom: 1px solid #fff;
  margin: 8px 0 5px;
}

BLOCKQUOTE {
  font-size: 22px;
  line-height: 28px;
  color: var(--ung-blue);
  margin: 0;
  border-top: solid 1px var(--ung-blue);
  border-bottom: solid 1px var(--ung-blue);
  padding: 20px 0 20px 10px;
  position: relative;
  /* font-family: var(--baseSansFont); /--- was: Gotham Book ---/ OK - allows screen smart version*/
}
@media (max-width: 767.98px) {
  BLOCKQUOTE {
    font-size: 24px;
    line-height: 30px;
    padding: 20px;
  }
}

BLOCKQUOTE:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\F10D";
  position: absolute;
  left: -10px;
  top: -18px;
  font-size: 22px;
  padding: 0 9px 0 0;
  /*background: var(--lite-gray);*/
}

BLOCKQUOTE:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\F10E";
  position: absolute;
  right: -10px;
  bottom: -18px;
  font-size: 22px;
  padding: 0 0 0 9px;
  /*background: var(--lite-gray);*/
}

/* OK -modify to see blockquote on jumbotron 8/9/22 */ 

.jumbotron.jumbotron-fluid BLOCKQUOTE {
    color: white;
    border-top: solid 1px white;
    border-bottom: solid 1px white;    
}

.jumbotron.jumbotron-fluid P.name-blockquote {
    color: white;

}

/* OK - modify pull quote to match bg 7/20/21 - add other bg later */ 

.section-page.white_bg BLOCKQUOTE:before,
.section-page.white_bg BLOCKQUOTE:after {
  background: #fff;
}

.section-page.liteblue_bg BLOCKQUOTE:before,
.section-page.liteblue_bg BLOCKQUOTE:after {
  background: var(--lite-blue);
}

.name-blockquote {
  margin: 10px 0 0;
  font-size: 16px;
  text-transform: uppercase;
  text-indent: 10px;
  font-weight: 700;
}

.title-blockquote {
  font-size: 16px;
  margin-left: 10px;
}

/* OK - block quote attribution color */
P.name-blockquote, P.title-blockquote {
  color: var(--ung-blue);
}

.section-page.blue_bg P.name-blockquote, .section-page.blue_bg P.title-blockquote {
  color: #fff;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-size: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
}

.carousel-control-prev, .carousel-control-next {
  opacity: 1;
  color: #0D0D0D !important;
}
.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
  color: black;
}
.carousel-control-prev .fas, .carousel-control-next .fas {
  background: #fafafa;
  background: radial-gradient(circle, #fafafa 50%, rgba(255, 254, 254, 0) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fafafa",endColorstr="#fffefe",GradientType=1);
  opacity: 0.5;
}
.carousel-control-prev .fas:hover, .carousel-control-next .fas:hover {
  opacity: 0.75;
}

@media (max-width: 991.98px) {
  .carousel-indicators {
    bottom: -15px;
  }
}

@media (min-width: 991.98px) {
 .news-fd .carousel.slide.pointer-event .carousel-indicators {
    bottom: 5px;
  }
}

@media (max-width: 991.98px) {
 .news-fd .carousel.slide.pointer-event .carousel-indicators {
    bottom: -10px;
  }
}

@media (min-width: 991.98px) {
 .carousel.slide .carousel-indicators {
    bottom: -25px;
  }
  .news-fd .fd-slideshow.fd-image-above .carousel.slide .carousel-indicators {
    bottom: -20px;
  }
}

@media (max-width: 991.98px) {
 .carousel.slide .carousel-indicators {
    bottom: -10px;
  }
}

.carousel-indicators LI {
  width: 15px;
  height: 15px;
  background-color: #E5E5E5;
  opacity: 1;
  border: solid 1px #313131;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .carousel-indicators LI {
    margin-left: 6px;
    margin-right: 6px;
  }
}

.carousel-indicators LI.active {
  background-color: #313131;
  border: solid 1px #fff;
}

.carousel-padding .carousel-item {
  padding: 0 14% 9%;
}

/* EN Patch 2025-06: 
 * iFrame/YouTube elements in Slick-Slider 
 * would [unintuitively] remain clickable
 * in the margins of the page, despite 
 * ancestor/container w/ `overflow: hidden;`
 * Note: Keyboard tabbing will need to be disabled
 * via Velocity: `for( frame of iframeChildren) frame.tabindex=-1`
 * and JavaScript: `iFrame.slide-current.tabindex=0`*/
.slick-slide{pointer-events:none;}
.slick-slide.slick-current{pointer-events:auto;}
/* End: EN Patch 2025-06: */

.slider.slick-center-mode .slick-slide {
  opacity: 0.6;
  padding: 15px;
}
.slider.slick-center-mode .slick-slide {
  transition: all 0.3s ease-in-out;
}

.slider.slick-center-mode .slick-slide .card-body {
  padding-top: .4rem;
  /*display: none; #OK*/
}
.slider.slick-center-mode .slick-slide.slick-current {
  opacity: 1;
  transform: scale(1.2);
  z-index: 10;
}

/*
#OK - Added LI to match card body text on sliders 
*/
.slider.slick-center-mode .slick-slide.slick-current .card-body P, 
.slider.slick-center-mode .slick-slide.slick-current .card-body LI  {
  font-size: 12px;
  line-height: 16px;
}

/*
#OK - new class "slick-center-no-scale" for unscaled side by side slider/carousel
*/

.slider.slick-center-no-scale .slick-slide {
  opacity: 0.6;
  padding: 15px;
}
.slider.slick-center-no-scale .slick-slide {
  transition: all 0.3s ease-in-out;
}
.slider.slick-center-no-scale .slick-slide .card-body {
  /* display: none; #OK */
}
.slider.slick-center-no-scale .slick-slide.slick-current {
  opacity: 1;
  transform: scale(1.0);
  z-index: 10;
}
.slider.slick-center-no-scale .slick-slide.slick-current .card-body {
  display: block;
}

/* adjusted margin for h6 sliders */

.slider.slick-center-no-scale .slick-slide.slick-current .card-body H6 {
    margin: 16px 0 12px 0;
}

/* ========#OK - Added LI to match card body text on sliders ========*/
.slider.slick-center-no-scale .slick-slide.slick-current .card-body P, 
.slider.slick-center-no-scale .slick-slide.slick-current .card-body LI  {
  font-size: 16px;
  line-height: 16px;
}

INPUT.form-control[type=text], TEXTAREA.form-control {
  border: 1px solid #858585;
}

INPUT.form-control[type=text]:focus, TEXTAREA.form-control:focus {
  background-color: #fff;
  border: 1px solid #858585;
}

.custom-form .custom-control-label {
  font-weight: bold;
}
.custom-form .custom-control-label {
  margin-bottom: 15px;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
}

.tabs-container {
  /* Bootstrap responsive tabs */
}
.tabs-container .nav-tabs .nav-item {
  margin-bottom: -1px;
}
.tabs-container .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  text-decoration: none !important;
}
.tabs-container .nav-tabs .nav-link:hover, .tabs-container .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.tabs-container .nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.tabs-container .nav-tabs .nav-link.active,
.tabs-container .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.tabs-container .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.tabs-container .nav-tabs, .tabs-container .staff-directory-page .nav-tabs {
  padding-top: 1rem;
  padding-left: 30px;
}
.tabs-container .nav-tabs .nav-link {
  margin: 0;
  /* padding: 23px 35px 12px 35px #OK - removed for spacing*/
  padding: 24px 20px 10px 20px;
  border: 0;
  color: #272727;
  background-size: cover !important;
  background-position: top !important;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  background: url("/_uploads/images/2021/template/GreyOutlineTab.svg") no-repeat;
  width: 159px;
  text-align: center; /* OK */
  line-height: 1.2; /* OK */
}

.accordion-container .section-expandable .container.tabs-container .nav-tabs .nav-link:hover {
  background: url("/_uploads/images/2021/template/white-tab.svg") no-repeat;
}

.accordion-container .section-expandable DIV.white_bg .container.tabs-container .nav-tabs .nav-link:hover {
  background: url("/_uploads/images/2021/template/Greytab.svg") no-repeat;
}

.accordion-container .section-expandable DIV.white_bg .container.tabs-container .nav-tabs .nav-link.active:hover {
  background: url("/_uploads/images/2021/template/TealTab.svg") no-repeat;
}

.accordion-container .section-expandable .container.tabs-container .nav-tabs .nav-link.active:hover {
  background: url("/_uploads/images/2021/template/TealTab.svg") no-repeat;
}

.tabs-container .nav-tabs .nav-link:hover {
  background: url("/_uploads/images/2021/template/GreyTab.svg") no-repeat;
}

@media (max-width: 768px) {
  .tabs-container .nav-tabs .nav-link {
    display: none;
  }
}
.tabs-container .nav-tabs .nav-link.active {
  background: url("/_uploads/images/2021/template/TealTab.svg") no-repeat;
  color: var(--dark-blue);
}
@media (max-width: 768px) {
  .tabs-container .nav-tabs .nav-link.active {
    display: inline-block;
    width: 100%;
    height: 80px;
    text-align: center;
    padding-top: 40px;
  }
}
.tabs-container .nav-tabs .nav-link.active:hover {
  background: url("/_uploads/images/2021/template/TealTab.svg") no-repeat;
}

.tabs-container .section-page.blue_bg .nav-tabs .nav-link.active:hover {
  background: url("/_uploads/images/2021/template/TealTab.svg") no-repeat;
}

@media (max-width: 768px) {
  .tabs-container .nav-tabs .nav-item {
    width: calc(100% - 40px);
  }
}
.tabs-container .tab-content {
  /* background: #fff; - allow custom bg*/
  margin: 0;
  padding: 20px 30px 0px 30px;
  border-top: 6px solid var(--teal);
}
@media (max-width: 1169px) {
  .tabs-container .tab-content {
    padding-top: 30px;
  }
}
.tabs-container .tab-content .row {
  margin: 0;
  padding: 0;
}
.tabs-container .tabs-darkBg .nav-tabs .nav-link {
  color: #ffffff;
}
.tabs-container .tabs-darkBg .nav-tabs .nav-link:hover {
  color: #272727;
}
.tabs-container .tabs-darkBg .nav-tabs {
  border-bottom: 1px solid transparent;
}
.tabs-container .responsive-tabs-container[class*=accordion-] .accordion-link {
  display: none;
}
@media (max-width: 767px) {
  .tabs-container .responsive-tabs-container.accordion-xs .nav-tabs {
    display: none;
  }
  .tabs-container .responsive-tabs-container.accordion-xs .accordion-link {
    display: block;
    font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tabs-container .responsive-tabs-container.accordion-sm .nav-tabs {
    display: none;
  }
  .tabs-container .responsive-tabs-container.accordion-sm .accordion-link {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tabs-container .responsive-tabs-container.accordion-md .nav-tabs {
    display: none;
  }
  .tabs-container .responsive-tabs-container.accordion-md .accordion-link {
    display: block;
  }
}
@media (min-width: 1200px) {
  .tabs-container .responsive-tabs-container.accordion-lg .nav-tabs {
    display: none;
  }
  .tabs-container .responsive-tabs-container.accordion-lg .accordion-link {
    display: block;
  }
}


/* OK - Fix for expandable inside a tab nested */

@media (min-width: 1169px){
.tabs-container .accordion-container .collapse {
    display: none;
}

.tabs-container .accordion-container .collapse.show {
    display: block;
    }
}

.accordion-container .row { 
  width:100% 
}

.accordion-container .panel-title > A:before {
  float: right !important;
  font-family: FontAwesome;
  content: "\F068";
  padding-right: 5px;
  padding-top: 5px;
}
.accordion-container .panel-title > A.collapsed:before {
  float: right !important;
  content: "\F067";
  font-family: FontAwesome;
  padding-left: 24px
}

/* OK - Fix for expandable +/- duplicate inside a tab nested */

.tabs-container .accordion-container .panel-title > A:before {
  float: right !important;
  font-family: FontAwesome;
  content: "";
  padding-right: 5px;
  padding-top: 5px;
}
.tabs-container .accordion-container .panel-title > A.collapsed:before {
  float: right !important;
  content: "";
  font-family: FontAwesome;
  padding-left: 24px
}

.accordion-container .panel-title > A:hover,
.accordion-container .panel-title > A:active,
.accordion-container .panel-title > A:focus {
  text-decoration: none;
}
.accordion-container UL.accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: solid 1px #272727;
}
.accordion-container UL.accordion LI:first-child .panel-title {
  border-top: none;
}
.accordion-container .accordion-lite .accordion {
  border-bottom: solid 1px #fff;
}
.accordion-container .accordion-lite .accordion LI:first-child .panel-title {
  border-top: none;
}

/* #OK - modified spacing in expandable and remove defaul background around content - e4e4e4 */

.accordion-container .accordion .panel-collapse {
  /*padding: 1rem 0 0; */
  background-color: var(--dark-gray);
}

.accordion-container .section-expandable .container:first-of-type {
  padding-right: 0px;
  padding-left: 0px;
}

.accordion-container .section-expandable .row:first-of-type {
  margin-right: 0px;
  margin-left: 0px;
}
.accordion-container .section-expandable .row .row DIV.wysiwyg:first-of-type{
    margin: 24px 12px;
}

.accordion-container.wppromo .accordion .panel-collapse {
  padding: 30px;
  background-color: var(--dark-gray);
}

.section-expandable DIV.wysiwyg{ margin-bottom: 16px }

.accordion-container .accordion .panel-body{ font-family: var(--baseSansFont) } /* was: Gotham Book | EN - 2025/10/18 */

/* #OK - Delete later
.accordion-container .accordion .panel-body p, .accordion-container .accordion .panel-body LI {
  color: var(--body-text);
}
 */

.parentVerticalTab .section-tab-left .accordion-container UL.accordion-inner-grey LI.panel.panel-default .panel-body .section-expandable .wysiwyg P,
.parentVerticalTab .section-tab-left .accordion-container UL.accordion-inner-grey LI.panel.panel-default .panel-body .section-expandable .wysiwyg LI,
.parentVerticalTab .accordion-container .accordion .panel-body P, .parentVerticalTab .accordion-container .accordion .panel-body LI.resp-tab-active,
.parentVerticalTab .accordion-container .accordion .panel-body P, .parentVerticalTab .accordion-container .accordion .panel-body LI:hover { 
    color:var(--body-text);
} 

.parentVerticalTab .accordion-container .accordion .panel-body P, .parentVerticalTab .accordion-container .accordion .panel-body LI,
.accordion .panel-body .row DIV.blue_bg P, .accordion .panel-body .row DIV.blue_bg LI {
  color: #fff;
}

.accordion-container .accordion .panel-title {
  border-top: solid 1px #272727;
  display: grid;
}

/* #OK - exp label line ht adjust and spacing above and below */

.accordion-container .accordion .panel-title A {
  line-height: 1.3;
  text-decoration: none;
  padding: 10px 0 0 0;
}

/* #OK - ss for exp label - might need to adjust for size classes with gothicmedium-font */ 
.accordion-container .accordion .panel-title A.gothicmedium-font.text-blue:not(.size-24) {
  font-family: var(--baseSansFont) !important;
  font-weight: 400; /* was: 500  | EN - 2025/10/18 */
}

.accordion-container .accordion .panel-title A.gothicmedium-font.size-28.text-blue {
  font-family: var(--baseSansFont) !important; /* was: Gotham Medium | EN - 2025/10/18 */
}

/* #OK - ss-font for course listings  7/12/21 */
.accordion-container.wppromo.p-3 A.gothic-font.text-blue.collapsable-pane {
    font-family: var(--baseSansFont) !important;
    font-weight: 700;
}

/* #OK - take out duplicate +- when tab is inside expandable on mobile  7/13/21 */
.accordion-container .section-expandable .container.tabs-container .panel-heading A.collapsed:after,
.accordion-container .section-expandable .container.tabs-container .panel-heading A:after {
    content: ""
}

.accordion-container .accordion .accordion-inner-grey .panel-collapse {
  background-color: var(--dark-gray);
}
.accordion-container .accordion.expandAll .panel-default {
  border-top: none;
  border-bottom: none;
}
.accordion-container .accordion.expandAll .title-expandall {
  border-top: none;
  padding: 0 30px;
}
.accordion-container .accordion.expandAll H1, .accordion-container .accordion.expandAll H2, .accordion-container .accordion.expandAll H3, .accordion-container .accordion.expandAll H4, .accordion-container .accordion.expandAll H5, .accordion-container .accordion.expandAll H6 {
  border-bottom: none;
}
.accordion-container .accordion.expandAll H1 > A:before, .accordion-container .accordion.expandAll H2 > A:before, .accordion-container .accordion.expandAll H3 > A:before, .accordion-container .accordion.expandAll H4 > A:before, .accordion-container .accordion.expandAll H5 > A:before, .accordion-container .accordion.expandAll H6 > A:before {
  font-family: FontAwesome, "Gotham Bold";
  content: "Expand All \F068";
  color: #272727;
  font-size: 18px;
}
.accordion-container .accordion.expandAll H1 > A.collapsed:before, .accordion-container .accordion.expandAll H2 > A.collapsed:before, .accordion-container .accordion.expandAll H3 > A.collapsed:before, .accordion-container .accordion.expandAll H4 > A.collapsed:before, .accordion-container .accordion.expandAll H5 > A.collapsed:before, .accordion-container .accordion.expandAll H6 > A.collapsed:before {
  content: "Expand All \F067";
}
.accordion-container .accordion.expandAll H1 A, .accordion-container .accordion.expandAll H2 A, .accordion-container .accordion.expandAll H3 A, .accordion-container .accordion.expandAll H4 A, .accordion-container .accordion.expandAll H5 A, .accordion-container .accordion.expandAll H6 A {
  line-height: 2;
}
.accordion-container .accordion.expandAll.accordion-lite H1 > A:before, .accordion-container .accordion.expandAll.accordion-lite H2 > A:before, .accordion-container .accordion.expandAll.accordion-lite H3 > A:before, .accordion-container .accordion.expandAll.accordion-lite H4 > A:before, .accordion-container .accordion.expandAll.accordion-lite H5 > A:before, .accordion-container .accordion.expandAll.accordion-lite H6 > A:before {
  font-family: FontAwesome, "Gotham Bold";
  content: "Expand All \F068";
  color: #ffffff;
  font-size: 18px;
}
.accordion-container .accordion.expandAll.accordion-lite H1 > A.collapsed:before, .accordion-container .accordion.expandAll.accordion-lite H2 > A.collapsed:before, .accordion-container .accordion.expandAll.accordion-lite H3 > A.collapsed:before, .accordion-container .accordion.expandAll.accordion-lite H4 > A.collapsed:before, .accordion-container .accordion.expandAll.accordion-lite H5 > A.collapsed:before, .accordion-container .accordion.expandAll.accordion-lite H6 > A.collapsed:before {
  content: "Expand All \F067";
}
.accordion-container .accordion.expandAll.accordion-lite H1 A, .accordion-container .accordion.expandAll.accordion-lite H2 A, .accordion-container .accordion.expandAll.accordion-lite H3 A, .accordion-container .accordion.expandAll.accordion-lite H4 A, .accordion-container .accordion.expandAll.accordion-lite H5 A, .accordion-container .accordion.expandAll.accordion-lite H6 A {
  line-height: 2;
}
.accordion-container .accordion-lite .panel-title {
  border-top: solid 1px #fff;
}
.accordion-container .accordion-lite .panel-title A { color: #fff }
.accordion-container .accordion-lite .panel-title > A:before { color: #fff }
.accordion-container .accordion-lite .accordion-inner-grey .panel-collapse {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.title-expandall { display: inline-block }

.toggleAccordionShow,
.toggleAccordionHide {
  float: right;
  margin: 6px 0 0 6px;
}
.toggleAccordionShow:after,
.toggleAccordionHide:after {
  content: "";
  clear: both;
}
@media (max-width: 767.98px) {
  .toggleAccordionShow,
.toggleAccordionHide {
    float: right;
    display: inline-block;
    width: auto;
  }
}

.wppromo .title-expandall {
  display: block;
}
.wppromo .toggleAccordionShow,
.wppromo .toggleAccordionHide {
  float: right;
  margin: 3px 6px 0 0;
}

.blue_bg.accordion-container H2, .blue_bg.accordion-container H3, 
.blue_bg.accordion-container H4  {
  color:#fff;
}

.blue_bg.accordion-container .section-expandable.white_bg DIV.wysiwyg H2,
.blue_bg.accordion-container .section-expandable.white_bg DIV.wysiwyg H3,
.blue_bg.accordion-container .section-expandable.white_bg DIV.wysiwyg H4,
.blue_bg.accordion-container .section-expandable.white_bg DIV.wysiwyg H5,
.blue_bg.accordion-container .section-expandable.white_bg DIV.wysiwyg H6
 {
  color: var(--dark-blue);
}

.blue_bg.accordion-container .panel-group A, .blue_bg.accordion-container .panel-group P, .blue_bg.accordion-container .panel-group LI {
  color: #fff;
}

.blue_bg.accordion-container .panel-group .white_bg A, .blue_bg.accordion-container .panel-group .white_bg P, .blue_bg.accordion-container .panel-group .white_bg LI {
  color: var(--body-text);
}

.blue_bg .accordion-container.white_bg H2, .blue_bg .accordion-container.white_bg H3,
.blue_bg .accordion-container.white_bg H4, .blue_bg .accordion-container.white_bg H5,
.accordion-container.white_bg H6 {
  color: var(--ung-blue);
}


.blue_bg.accordion-container .panel-group .white_bg A:hover {
  color: var(--dark-blue)
}

.blue_bg.accordion-container .panel-group A:hover{
  color: #fff;
}

.blue_bg.accordion-container .panel {
  border-bottom: 1px solid white;
}
.blue_bg.accordion-container .panel-collapse {
  background: var(--ung-blue);
}
.blue_bg.accordion-container .panel-collapse .panel-body {
  color: white;
}

@media (min-width: 769px) {
  .panel-title-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
  }
}
@media (min-width: 1024px) {
  .panel-title-wrap {
    grid-template-columns: 2fr 1fr;
  }
}

/* jQuery Responsive Vertical Tabs to Accordion */
UL.resp-tabs-list,
#parentVerticalTab P {
  margin: 0px;
  padding: 0px;
}

.resp-tabs-list LI {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 13px 15px;
  margin: 0 4px 0 0;
  list-style: none;
  cursor: pointer;
  float: left;
  color: #0C2F87;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
}

.resp-tabs-list LI:hover {
  background-color: var(--dark-gray) !important;
 color: var(--ung-blue); /* #OK - adjusted for vert tab style */
}

.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}

H2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
  min-height: 40px;
}

.resp-tab-content {
  display: none;
  padding: 0 15px;
}

.resp-tab-active {
  border: 1px solid #5AB1D0 !important;
  border-bottom: none;
  margin-bottom: -1px !important;
  padding: 12px 14px 14px 14px !important;
  border-top: 4px solid #5AB1D0 !important;
  border-bottom: 0px #fff solid !important;
}

.resp-tab-active {
  border-bottom: none;
  background-color: #fff;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

.resp-tab-content {
  border: 1px solid #c1c1c1;
  border-top-color: #5AB1D0;
}

H2.resp-accordion {
  font-size: 16px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

H2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important;
}

H2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

/*   Vertical tabs   */
.resp-vtabs UL.resp-tabs-list {
  float: left;
  width: 30%;
}

.resp-vtabs .resp-tabs-list LI {
  display: block;
  padding: 15px 15px !important;
  margin: 0 0 4px;
  cursor: pointer;
  float: none;
}

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  float: left;
  width: 68%;
  min-height: 250px;
  border-radius: 4px;
  clear: none;
}
.resp-vtabs .resp-tabs-container H3 {
  margin-top: 0;
}

.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}

.resp-vtabs LI.resp-tab-active {
  position: relative;
  z-index: 1;
  margin-right: -1px !important;
  padding: 14px 15px 15px 14px !important;
  border-top: 1px solid;
  border: 1px solid #5AB1D0 !important;
  border-left: 4px solid #5AB1D0 !important;
  margin-bottom: 4px !important;
  border-right: 1px #FFF solid !important;
}

.resp-arrow:after {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  margin-right: 8px;
  float: right !important;
  content: "\F067";
  font-family: "FontAwesome";
}

H2.resp-tab-active SPAN.resp-arrow:after {
  float: right !important;
  font-family: "FontAwesome";
  content: "\F068";
}

/* Accordion styles */
H2.resp-tab-active {
  background: #DBDBDB;
}

.resp-easy-accordion H2.resp-accordion {
  display: block;
}

.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1;
  /* !important;*/
}

.resp-jfit {
  width: 100%;
  margin: 0px;
}

.resp-tab-content-active {
  display: block;
}

H2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1;
  /* !important;*/
}

@media only screen and (min-width: 768px) {
  .resp-tabs-container {
    padding: 30px !important;
  }
}
/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
  UL.resp-tabs-list {
    display: none;
  }

  H2.resp-accordion {
    display: block;
    font-family: var(--baseSansFont);  /* OK - Adjust tab header to screen smart for nested expandables on mobile */
    font-weight: 700;
  }
  
   .parentVerticalTab .section-tab-left .accordion-container A.gothicmedium-font.text-blue.collapsable-pane.size-24 {
    font-size: 18px !important;  /* OK - Adjust tab header size for nested expandables on mobile */
    font-family: var(--baseSansFont) !important;
    font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #C1C1C1;
  }

  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }

  .resp-accordion-closed {
    display: none !important;
  }

  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
  }
}
/* custom styles */
.resp-tabs-list {
  margin-top: 0 !important;
}



.resp-tabs-container {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
}

/* #OK - Reversed Tab Color */
.resp-tabs-list .resp-tab-item {
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
  background-color: var(--ung-blue) !important;
  color: #fff;
}

.resp-tabs-list .resp-tab-item.resp-tab-active {
  border: none !important;
  border-left: none !important;
  color: var(--dark-blue);
  background-color: #fff !important;
}

.resp-tab-item SPAN {
  display: block;
  font-weight: normal;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 400;
  font-style: normal;
}

.resp-accordion.hor_1.resp-tab-active {
  color: #fff;
  background-color: var(--ung-blue) !important;
  border-top: none !important;
  border: none !important;
}

#msform FIELDSET {
  background: white;
  border: 0 none;
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
  box-sizing: border-box;
  /*stacking fieldsets above each other*/
  position: relative;
}

/*Hide all except first fieldset*/
#msform FIELDSET:not(:first-of-type) {
  display: none;
}

/*inputs*/
#msform INPUT, #msform TEXTAREA {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
}

#msform .previousstep:hover I {
  -webkit-transition: all 0.3s ease;
  transform: translateX(-7px);
}
#msform .previousstep I {
  padding-left: 0;
}

.step-desc {
  display: block;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 400;
}

.nextbtn {
  margin-top: 15px !important;
}

.blue_bg > H3 {
  color: white;
}
.blue_bg .resp-vtabs .resp-tab-active {
  background-color: var(--lite-blue) !important;
  color: var(--ung-blue);
}
.blue_bg .resp-vtabs .resp-tab-content H3 {
  color: var(--ung-blue);
}
.blue_bg .resp-vtabs .resp-tab-content A {
  color: var(--ung-blue);
}

.img-gradient-wrap {
  position: relative;
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
}
.img-gradient-wrap IMG {
  display: block;
}
.img-gradient-wrap .img-gradient {
  position: relative;
  margin: 0;
  padding: 0;
}
.img-gradient-wrap .img-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  text-align: left;
  color: #fff;
  font-weight: bold;
}

.img-gradient-wrap .img-caption .text-bottom {
  position: absolute;
  bottom: 0;
  padding: 0 0 0 12px;
}

@media (max-width: 768px) {
  .img-gradient-wrap .img-caption .text-bottom {
  position: absolute;
  bottom: 0;
  padding: 0 0 6px 16px;
  }
}

.img-gradient-wrap .img-caption .text-bottom P {
  margin-bottom: 0;
}

/* #OK - Adds white to header text on image gradient overlay */
.text-bottom A,
.text-bottom H1,
.text-bottom H2,
.text-bottom H3,
.text-bottom H4,
.text-bottom H5,
.text-bottom H6
{
  color: #fff;
}

.text-bottom H3, .text-bottom H4, .text-bottom H5, .text-bottom H6 {
  font-size: 1.2rem;
  font-family: var(--baseSansFont); /* was: Gotham medium | EN - 2025/10/18 */
  line-height: 1.1
}

.text-bottom .card H2, .text-bottom .card H3, .text-bottom  .card H4, .text-bottom .card H5, .text-bottom .card H6 {
  color: var(--ung-blue);
}  

.text-bottom .card {
  color:var(--body-text);
}

.slick-container .img-gradient-wrap .img-caption .text-bottom {
  position: absolute;
  bottom: 0px; 
  padding: 0 0 4px 16px;
}

.slick-container .card.card-transparent .card.clear-caption .card.no-flex.box-shadow .img-gradient-wrap .img-caption .text-bottom {
  position: absolute;
  padding: 10px 0 10px 20px;
  bottom:0;
}

@media (max-width: 768px) {
  .slick-container .card.card-transparent .card.clear-caption .card.no-flex.box-shadow .img-gradient-wrap .img-caption .text-bottom {
  position: absolute;
  padding: 10px 0 4px 20px;
  bottom:0;
  }
}


.feed-item-collapsed {
  background-color: var(--lite-gray);
  border: solid 1px #B8B8B8;
  color: #003087;
  padding: 0;
  width: 39px;
  height: 39px;
}
.feed-item-collapsed:before {
  float: right !important;
  font-family: FontAwesome;
  content: "\F068";
  padding: 8px 13px;
}
.feed-item-collapsed.collapsed:before {
  float: right !important;
  content: "\F067";
  font-family: FontAwesome;
}

.feed-item-collapsed-hide {
  display: none;
}

.calendar-event {
  margin: 16px 0 20px 0;
  padding: 0;
}

/* #OK - spacing in between each event "row" */
.calendar-event .row {
  padding: 6px;
}

.calendar-event:nth-child(-n+3) {
  /* display: none; - VP - default setting - changed to inline block because was designed for feed to dissappear below 640px */
  display:  inline-block;
}

/* - #OK - commented out because redundant but here for now - just in case 
@media (min-width: 640px) {  
  .calendar-event:nth-child(-n+3) {
    display: inline-block;
  }
}
*/

.calendar-event .hexagon-wrap {
  width: 85px;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1169px) {
  .calendar-event .hexagon-wrap {
    display: block;
    margin: auto;
    padding-bottom: 10px;
  }
}
.calendar-event .hexagon {
  position: relative;
  width: 69px;
  height: 78px;
  background: url("/_uploads/images/2021/template/hexagon.svg") no-repeat;
  margin: 0;
  color: var(--ung-blue);
  background-size: cover;
}
.calendar-event .hexagon .date {
  width: 100%;
  line-height: 20px;
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
  padding: 17px 0;
}
.calendar-event .hexagon .date SPAN {
  text-align: center;
  display: inline-block;
  width: 100%;
}
.calendar-event .hexagon .date .month {
  font-size: 15px;
}
.calendar-event .hexagon .date .day {
  font-size: 26px;
}

/* #OK- added italics to date */
.calendar-event .details .date {
  font-style: italic; 
}

.calendar-event .details {
  display: inline-block;
  line-height: 25px;
  /* min-height: 150px; -#OK - remove empty space from minimized feed */
}
@media (max-width: 1199.98px) {
  .calendar-event .details {
    padding-right: 15px;
  }
}
@media (max-width: 991.98px) {
  .calendar-event .details {
    padding: 0 20px;
  }
}
@media (max-width: 767.98px) {
  .calendar-event .details {
    padding: 0 0 0 20px;
  }
}
.calendar-event .details .event-title,
.calendar-event .details .location,
.calendar-event .details .time {
  margin: 0;
  padding: 0;
}
.calendar-event .details .event-title A {
  font-size: 18px;
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700;
  line-height: 22px;
  display: inline-block;
}

.blue_bg .calendar-event .hexagon, .blue_bg .calendar-event .details .event-title A {
  color: #fff;
}

.blue_bg .calendar-event .hexagon, .blue_bg .calendar-event .col-10 .details .event-title A {
  color: #fff;
}

.blue_bg .calendar-event .col-10 .details .event-title A:hover {
  color: var(--teal);
  text-decoration: none;
}


.blue_bg .get-involved .calendar-event .details P  {
  color: var(--body-text);
}

.blue_bg .get-involved .calendar-event .hexagon, .blue_bg .calendar-event .details .event-title A {
  color: var(--dark-blue);
}

.calendar-event .details .location {
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}
.calendar-event .details .time {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .calendar-event.one-off {
    display: block;
  }
}

/* #OK - RSS/Event Feeds */

.rss-fd .fd-hexagon .calendar-event {
  margin: 0;
  padding-bottom: 1rem;
}


.event-fd-inline P.date {
  margin: 0;
}

SECTION.blue_bg .fd-list.fd-inline.fd-image-left {
    color: #fff;
}

/* #OK - modifications for feeds-event on BS column 3/4 */

.col-md-3 .event-fd-hexagon .calendar-event .col-2, 
.col-md-4 .event-fd-hexagon .calendar-event .col-2 { 
margin-right: 1px;
} 

.col-md-3 .event-fd-hexagon .hexagon-wrap, 
.col-md-4 .event-fd-hexagon .hexagon-wrap { 
padding-bottom: 1rem;
}

.col-md-3 .event-fd-hexagon .row .calendar-event .row, 
.col-md-4 .event-fd-hexagon .row .calendar-event .row {
  padding-bottom: 1rem;
}

.col-md-6 .event-fd-hexagon .row .calendar-event .row {
  padding-bottom: 2rem;
}

.col-md-12 .event-fd-hexagon .row {
  padding-bottom: 2rem;
}

.col-md-12 .event-fd-hexagon A.btn {
}


.col-md-12 .event-fd-hexagon .hexagon-wrap { 
  position: relative; 
  left: 40%;  
} 

@media (max-width: 1200px) {
  .col-md-12 .event-fd-hexagon .hexagon-wrap { 
  position: relative; 
  left: 20px;  
  } 
}
.col-md-3 .event-fd-hexagon .hexagon-wrap { 
  position: relative; 
  left: 64px;  
} 


@media (max-width: 1200px) {
  .col-md-3 .event-fd-hexagon .hexagon-wrap { 
  position: relative; 
  left: 30px;  
  } 
}

@media (max-width: 767px) {
  .col-md-3 .event-fd-hexagon .hexagon-wrap { 
  position: relative; 
  left: 0px;  
  } 
}

@media (max-width: 767px) {
 .col-md-3 .event-fd-hexagon .calendar-event .col-2, 
.col-md-4 .event-fd-hexagon .calendar-event .col-2 { 
 margin-right: 0;

} 
  } 


.col-md-4 .event-fd-hexagon .hexagon-wrap { 
  position: relative; 
  left: 100px;  
} 

@media (max-width: 1200px) {
  .col-md-4 .event-fd-hexagon .hexagon-wrap { 
  position: relative; 
  left: 70px;  
  } 
}

@media (max-width: 767px) {
  .col-md-4 .event-fd-hexagon .hexagon-wrap { 
  position: relative; 
  left: 0px;  
  } 
}


.col-md-3 .event-fd-hexagon .details, 
.col-md-4 .event-fd-hexagon .details {
  text-align: center;
} 


/* */
.feed-post .post-date {
  padding: 5px;
  display: inline-block;
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-size: 15px;
}
.feed-post A {
  color: var(--ung-blue);
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: bold;
  text-decoration: underline;
}
.feed-post .feed-excerpt {
  font-size: 16px;
}
.feed-post .Aligner-item {
  width: 100%;
}
@media (max-width: 767.98px) {
  .feed-post {
    border-bottom: 1px solid #cecece;
    padding-bottom: 20px;
  }
}

.spotlight FIGCAPTION {
  padding: 10px;
}

.degree-card .card-body:first-child {
  border-bottom: 2px solid #707070;
}

/* Slider */
.slick-container {
  /* Icons */
  /* Arrows */
  /* Dots */
}
.slick-container .slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}
@font-face {
  .slick-container {
    font-family: "slick";
    font-weight: normal;
    font-style: normal;
    src: url("/_uploads/css/2021/fonts/slick.eot");
    src: url("/_uploads/css/2021/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/_uploads/css/2021/fonts/slick.woff") format("woff"), url("/_uploads/css/2021/fonts/slick.ttf") format("truetype"), url("/_uploads/css/2021/fonts/slick.svg") format("svg");
  }
}
.slick-container .slick-prev,
.slick-container .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 20;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

@media (max-width: 767.98px) {
  .slick-container .slick-prev,
.slick-container .slick-next {
    top: 80%;
  }
}
.slick-container .slick-prev:hover,
.slick-container .slick-prev:focus,
.slick-container .slick-next:hover,
.slick-container .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-container .slick-prev:hover:before,
.slick-container .slick-prev:focus:before,
.slick-container .slick-next:hover:before,
.slick-container .slick-next:focus:before {
  opacity: 1;
}
.slick-container .slick-prev.slick-disabled:before,
.slick-container .slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-container .slick-prev:before,
.slick-container .slick-next:before {
  font-family: "slick";
  font-size: 40px;
  line-height: 1;
  opacity: 0.75;
  color: rgba(0, 0, 0, 0.5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-container .slick-prev {
  left: -60px;
}
@media (max-width: 767.98px) {
  .slick-container .slick-prev {
    left: 0;
  }
}
.slick-container [dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-container .slick-prev:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\F053";
  padding: 5px 15px 5px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  cursor: pointer;
  position: relative;
  z-index: 30;
}
.slick-container [dir=rtl] .slick-prev:before {
  content: "\2192";
}
.slick-container .slick-next {
  right: -30px;
}
@media (max-width: 767.98px) {
  .slick-container .slick-next {
    right: 30px;
  }
}
.slick-container [dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
.slick-container .slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\F054";
  padding: 5px 10px 5px 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  cursor: pointer;
  position: relative;
  z-index: 30;
}
.slick-container [dir=rtl] .slick-next:before {
  content: "\F053";
}
.slick-container .slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-container .slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-container .slick-dots LI {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-container .slick-dots LI BUTTON {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-container .slick-dots LI BUTTON:hover,
.slick-container .slick-dots LI BUTTON:focus {
  outline: none;
}
.slick-container .slick-dots LI BUTTON:hover:before,
.slick-container .slick-dots LI BUTTON:focus:before {
  opacity: 1;
}
.slick-container .slick-dots LI BUTTON:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "\2022";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-container .slick-dots LI.slick-active BUTTON:before {
  opacity: 0.75;
  color: black;
}

#back-to-top {
  width: 66px;
  overflow: hidden;
  z-index: 999;
  display: none;
  cursor: pointer;
  position: fixed;
  bottom: 120px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 0.4s linear;
}
#back-to-top I {
  font-size: 46px;
  line-height: 54px;
  transition: all 0.4s linear;
}
#back-to-top:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
#back-to-top:hover I {
  transform: translateY(-7px);
}

.start-your-journey-story .btn {
  font-size: 23px;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .start-your-journey-story .btn {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .start-your-journey-wrapper .btn {
   margin-top: 1rem;
  }
}

DIV#main-content A.btn {
  line-height: normal !important;
  display: inline-block;
  text-decoration: none;
}

.btn-blue {
  background-color: var(--ung-blue) !important;
  border: 1px solid var(--ung-blue) !important;
  color: #fff !important;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}

.btn.dropdown-toggle {
  text-transform: capitalize;
}

.btn {
  font-family: var(--baseSansFont); /* was: Gotham Bold | EN - 2025/10/18 */
  font-weight: 700; 
  font-style: normal;
  border-radius: 0px;
  width: auto;
  font-size: 16px; /* #OK - originally 14px */
  line-height: 19px;
  /* text-transform: uppercase; */ 
  padding: 8px 25px 8px 25px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  background-color: transparent;
  background-size: 201% 100%;
  background-position: right bottom;
  display: inline-grid;
  justify-content: center;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    padding: 11px 20px 11px 20px;
  }
}
.btn I {
  align-self: center;
  grid-areA: 1/col1-start/last-line/2;
}
.btn:hover I {
  -webkit-transition: all 0.3s ease;
  transform: translateX(7px);
}

/* #OK - Button Icons 2.0 */


@media (min-width: 768px) {
    A[target="_blank"].btn:hover I::before,  
    A[target="_blank"].btn:focus I::before {
      font-family: "Font Awesome 5 Free"; 
      content: "\f35d"; 
      font-weight: 900; 
      margin-left: -5px;
      position: relative;
      bottom: 1.5px; 
      display: inline-block; 
      font-size: small;
    } 
    
    .btn-xl A[target="_blank"].btn:hover I::before,
    .btn-xl A[target="_blank"].btn:focus I::before {
      position: relative;
      bottom: 2.5px;
      font-size: large;
      margin-left: -6px;
    } 
    
    
    A.lock.btn:hover I::before,
    A.lock.btn:focus I::before {
      font-family: "Font Awesome 5 Free"; 
      content: "\f023"; 
      font-weight: 900; 
      margin-left: -1.5px;
      position: relative;
      bottom: 1.5px; 
      display: inline-block; 
      font-size: small;
    } 
    
    .btn-xl A.lock.btn:hover I::before,
    .btn-xl A.lock.btn:focus I::before {
      position: relative;
      bottom: 2.5px;
      font-size: large;
      margin-left: -1.5px;
    } 
    
    A[target="_blank"].lock.btn:hover I::before,
    A[target="_blank"].lock.btn:focus I::before {
      font-family: "Font Awesome 5 Free";
      content: "\f023  \f35d";
      font-weight: 900;
      margin-left: -5px;
      position: relative;
      bottom: 1.5px;
      display: inline-block;
      font-size: 12px;
    } 
    
    .btn-xl A[target="_blank"].lock.btn:hover I::before,
    .btn-xl A[target="_blank"].lock.btn:focus I::before {
      position: relative;
      bottom: 3.5px;
      font-size: 16px;
      margin-left: -6.5px;
    } 
}

@media (max-width: 768px) {
 .row A.btn[target="_blank"] ::before {
    font-family: "Font Awesome 5 Free"; 
    content: "\f35d"; 
    font-weight: 900; 
    position: relative;
    bottom: 1.5px; 
    display: inline-block; 
    font-size: small;
  } 
  
  .btn-xl A.btn[target="_blank"] ::before {
      font-size: large;
      position: relative;
      bottom: 2.5px; 
  }

  A.lock.btn ::before  {
    font-family: "Font Awesome 5 Free"; 
    content: "\f023"; 
    font-weight: 900; 
    position: relative;
    bottom: 1.5px; 
    display: inline-block; 
    font-size: small;
  } 
  
  .btn-xl A.lock.btn ::before  {
    font-size: large;
    position: relative;
    bottom: 2.5px
    }


  A[target="_blank"].lock.btn ::before  {
    font-family: "Font Awesome 5 Free";
    content: "\f023  \f35d";
    font-weight: 900;
    position: relative;
    bottom: 1.5px;
    display: inline-block;
    font-size: small;
    } 
    
   .btn-xl A[target="_blank"].lock.btn ::before  {
    font-size: large;
    position: relative;
    bottom: 2.5px;
    }
}

/*
#OK - Added hover icon movement for - Links with Lines
*/

.ctalink:hover I {
  -webkit-transition: all 0.3s ease;
  transform: translateX(7px);
}

.btn.noborder:hover I {
  -webkit-transition: all 0.3s ease;
  transform: translateX(12px);
}
.btn:disabled I, .btn.disabled I {
  display: none;
}

/*
* Utility class to center a button
*/
.btn-wrap-center {
  width: 100%;
  text-align: center;
  /* margin: 10px 0; #OK-VP default */
}

/*
#OK - ppoint bottom button spacing
*/

.ppoints DIV.btn-wrap-center {
  padding-bottom: 1.4rem;
}

/*
#OK - Utility class to have large button
*/

.btn-xl .btn {
  font-size: 24px;
  padding-top: 8px;
    line-height: 1.75rem;
}

.btn-xl .fa-chevron-right:before {
   /* #OK - remove Later */
}

/*
#OK - Request Info Degree Buttons
*/

.request-info-link.btn.btn-primary, .ril-m .request-info-link .btn-primary { 
  border: 1px solid var(--lite-blue) !important;
  background-color: #fff;
  color: var(--ung-blue);
  font-size: 20px;
}

.request-info-link.btn.btn-primary:hover, .ril-m .request-info-link .btn-primary:hover { 
  border: 1px solid var(--lite-blue) !important;
  background-image: linear-gradient(90deg, var(--teal) 50%, transparent 50%);
  color: var(--ung-blue);
}

/*
#OK Button Intro Text 
*/

SPAN.btn-intro-text {
    font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
    font-weight: 400; /* was: 500 | EN - 2025/10/18 */
    font-size: 24px;
    color: var(--dark-blue);
    padding: 0 4rem 0 3rem;
    position: relative;
    top: .5rem;
}

/* Built in Tab button - center for default Add choices in definition later */

P.btn-tab-left {
    text-align: center;
}

/* #OK - ppoints built in bottom btn adjustment  - top container */

.ppoints {
  padding-top: .2rem;
}

P.lead.points-of-pride-text.pb-4 {
    margin-bottom: 6px;
}

.ppoint-lg-text {
  padding-top: 1rem;
}

/*
* Primary and Secondary Buttons - #OK Tertiary and Quaternary Buttons
*/
.btn-primary {
  border: 1px solid var(--lite-blue);
  background-color: var(--ung-blue);
  color: #fff;
}
.btn-primary:hover {
  border: 1px solid #fff;
  background-color: var(--lite-blue);
  color: var(--ung-blue);
  background-image: linear-gradient(90deg, var(--lite-blue) 50%, var(--dark-blue) 50%);
}

.btn-secondary {
  border: 1px solid var(--ung-gold);
  background-color: var(--ung-gold);
  color: var(--ung-blue) !important;
}
.btn-secondary:hover {
  border: 1px solid var(--ung-gold);
  background-color: var(--ung-blue);
  color: #fff !important;
  background-image: linear-gradient(90deg, var(--ung-blue) 50%, var(--ung-gold) 50%);
}

.btn-tertiary {
  background-color: var(--dark-blue);
  color: #fff;
}

.btn-tertiary:hover {
   border: 1px solid var(--ung-blue);
  background-color: var(--ung-gold);
  color: var(--dark-blue);
   background-image: linear-gradient(90deg, #FFCB2B 50%, var(--dark-blue) 50%);
}

.btn-quaternary {
   border: 1px solid var(--teal);
  background-color: #fff;
  color: var(--dark-blue);
}

.btn-quaternary:hover {
   border: 1px solid var(--ung-blue);
  background-color: var(--teal);
  color: var(--dark-blue);
   background-image: linear-gradient(90deg, var(--teal) 50%, transparent 50%);
}

.accordion-inner-grey .section-expandable A.btn.mr-3.btn-primary:hover,
.accordion-inner-grey .section-expandable A.btn.mr-3.btn-primary:active,
.accordion-inner-grey .section-expandable A.btn.mr-3.btn-primary:focus {
  background-color: #fff !important;
  color: var(--dark-blue) !important;
}


.btn-primary:hover,
.btn-secondary:hover,
.btn-tertiary:hover,
.btn-quaternary:hover {
  background-position: left bottom;
}
.btn-primary I,
.btn-secondary I,
.btn-tertiary I,
.btn-quaternary I {
  padding-left: 10px;
}
.btn-primary.disabled,
.btn-secondary.disabled {
  background-color: #676767;
  border-color: #676767;
  color: #fff !important;
  opacity: 1;
}

/*
* Outline Buttons: Primary and Secondary
*/
.btn-outline-primary:hover,
.btn-outline-secondary:hover {
  background-color: transparent;
  background-position: left bottom;
}
.btn-outline-primary I,
.btn-outline-secondary I {
  padding-left: 10px;
}

/* #OK - Original style for Hero Primary sections  */
.video-header-content .btn-outline-primary, .slide-content .btn-outline-primary  {
  border: 1px solid var(--ung-gold);
  color: #fff; 
}

.btn-outline-primary {
  border: 1px solid var(--ung-gold);
  color: #fff;
}

.btn-outline-primary I {
  color: var(--ung-gold);
}

.row .btn-outline-primary {
  border: 1px solid var(--ung-gold);
  color: var(--ung-blue);
}


.blue_bg .btn-outline-primary {
  border: 1px solid var(--ung-gold);
  color: #fff;
}

.btn-outline-primary:hover {
  color: var(--dark-blue);
  border: 1px solid var(--ung-gold);
  background-image: linear-gradient(90deg, var(--ung-gold) 50%, transparent 50%);
}
.btn-outline-primary:hover I {
  color: #fff;
}

/* #OK - added same class group for btn block field "black text/border" to show correctly  */
.alert-body.btn-outline-primary {
  color: var(--body-text);
  border-color: black;
}

.alert-body.btn-outline-primary  I {
    color: var(--body-text);
  }

.alert-body.btn-outline-primary:hover I {
    color: var(--body-text);
  }
  
/* #OK - Changes black text-black border on dk blue background */
.blue_bg .alert-body.btn-outline-primary {
    color: #fff;
   border-color: #fff;
}

.blue_bg .alert-body.btn-outline-primary:hover {
    color: var(--body-text);
   border-color: #fff;
}

.blue_bg .alert-body.btn-outline-primary  I {
    color: #fff;
  }

.blue_bg .alert-body.btn-outline-primary:hover I {
    color: var(--body-text);
}

.btn-outline-secondary {
  border: 1px solid var(--teal);
  color: var(--ung-blue);
}

/* #OK - changes teal fill in button with lite grey text on blue */
.blue_bg .btn-outline-secondary {
  border: 1px solid var(--teal);
  color: var(--lite-gray);
}

.btn-outline-secondary, .white_bg .btn-outline-secondary  {
  border: 1px solid var(--teal);
  color: var(--ung-blue);
  -webkit-appearance: none;
}
.btn-outline-secondary I {
  color: var(--teal);
}
.btn-outline-secondary:hover {
  color: var(--dark-blue);
  border: 1px solid var(--teal);
  background-image: linear-gradient(90deg, var(--teal) 50%, transparent 50%);
}
.btn-outline-secondary:hover I {
  color: #fff;
}

.btn-outline-white {
  background: #fff;
  border: 2px solid var(--dark-blue);
  color: var(--dark-blue);
  margin: 10px 0;
  font-size: 16px;
  width: 100%;
}

.btn-outline-secondary {
  border: 1px solid var(--teal);
  color: var(--ung-blue);
}
.btn-outline-secondary I {
  color: var(--teal);
  float: right;
}
.btn-outline-secondary:hover {
  color: var(--dark-blue);
  border: 1px solid var(--teal);
  background-image: linear-gradient(90deg, var(--teal) 50%, transparent 50%);
}
.btn-outline-secondary:hover I {
  color: #fff;
}
.btn-outline-secondary.hover-version {
  border: 1px solid var(--teal);
  background-color: var(--teal);
  color: var(--ung-blue);
}
.btn-outline-secondary.hover-version I {
  color: #fff;
}

.darkBg-btn.btn-outline-secondary {
  border: 1px solid var(--ung-blue);
  color: #fff;
}
.darkBg-btn.btn-outline-secondary I {
  color: #fff;
}
.darkBg-btn.btn-outline-secondary:hover {
  color: #fff;
  border: 1px solid var(--ung-blue);
  background-image: linear-gradient(90deg, var(--ung-blue) 50%, transparent 50%);
}
.darkBg-btn.btn-outline-secondary:hover I {
  color: #fff;
}

.btn-clear-filters {
  border: 0;
  background: transparent;
  color: white;
  font-size: 14px;
  font-family: var(--baseSansFont); /* was: Gotham Medium | EN - 2025/10/18 */
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
  font-style: italic;
  text-decoration: underline;
  padding: 10px 10px 20px 0;
  margin-bottom: 10px;
  display: inline-block;
}
@media (min-width: 768px) {
  .btn-clear-filters {
    padding: 20px 10px 0px 10px;
    margin: 0;
  }
}

.btn.disabled {
  opacity: 1;
}

.btn-outline-secondary.disabled {
  border-color: #676767;
  color: #676767;
  opacity: 1;
}
.btn-outline-secondary.disabled I {
  color: #676767;
  opacity: 1;
}

.blue_bg .btn-outline-primary.disabled,
.blue_bg .btn-outline-secondary.disabled {
  background-color: transparent;
  border-color: var(--lite-gray);
  color: var(--lite-gray);
  opacity: 1;
}

.blue_bg .btn-outline-primary.disabled I,
.blue_bg .btn-outline-secondary.disabled I {
  color: var(--lite-gray);
  opacity: 1;
}

.blue_bg .get-involved A.btn {
  color: var(--dark-blue);
}

/*
* Button link (Fourth Row in Toolbox)
*/

.image-header A.btn.btn-link {
  color: #fff;
}

.image-header A.btn.btn-link:hover {
  /* background-color: rgba(0, 47, 135, 0.67); */
  border: var(--ung-gold) 1px solid;
}

.image-header .btn-link I {
  color: #fff;
}

.btn-link {
  font-weight: 700;
  color: var(--ung-blue);
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #676767;
}
.btn-link I {
  color: var(--ung-blue);
  float: right;
  padding-left: 10px;
}
.btn.btn-link:hover, .btn-link.hover-version {
  background-color: rgba(0, 0, 0, 0.07);
  text-decoration: underline;
}

.blue_bg .btn-link {
  font-weight: 700;
  color: var(--lite-gray);
  text-decoration: underline;
}

.blue_bg .btn-link:hover, .blue_bg .btn-link.hover-version:hover {
  background-color: rgba(0, 0, 0, 0.27);
  color: #fff;
  text-decoration: underline;
}

.blue_bg .btn-link I {
  color: var(--lite-gray);
  float: right;
  padding-left: 10px;
}

.text-white.btn-link:hover {
  background-color: #0056b3;
}

/**
* Utility class that strips border from button
*/
.noborder {
  text-decoration: underline;
}
.noborder I {
  opacity: 0;
  position: absolute;
  margin-top: 3px;
}
.noborder:hover {
  text-decoration: underline;
}
.noborder:hover I {
  opacity: 1;
}

/**
* Outlined primary button in slider on the front page
*/
@media (max-width: 768px) {
  .slide .btn-outline-primary {
    font-size: 18px;
    background: #fff;
    color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
  }
}
@media (max-width: 768px) {
  .slide .btn-outline-primary I {
    color: var(--dark-blue);
  }
}

/**
* Outlined button inside of Alert box
*/
.alert-body .btn-outline-primary {
  color: black;
  border-color: black;
  margin-bottom: 15px;
}
.alert-body .btn-outline-primary I {
  color: black;
}

/* 
* Accordion Overrides of the buttons (top right)
*/
.accordion-container.white_bg .btn {
  border: 1px solid var(--dark-blue);
  background: transparent !important;
  color: var(--dark-blue);
  opacity: 1;
}
.accordion-container.blue_bg .btn {
  border: 1px solid #fff;
  background: transparent !important;
  color: #fff;
  opacity: 1;
}

.rss-item {
  margin-bottom: 20px;
}

.rss-image {
    padding: 0 0px 12px 0;
    display: block;
    margin: auto;
    width: 50%;
}

.rss-item .rss-title {
  font-family: var(--baseSansFont); /* was: Gotham Book | EN - 2025/10/18 */
  font-weight: 700;
  text-decoration: underline;
  color: var(--dark-blue);
}
.rss-item .rss-title:hover {
  color: #0056b3;
}
.rss-item .rss-info {
  font-size: 15px;
}
.rss-item .rss-info .rss-date {
  font-style: italic;
  font-size: 14px;
}
.rss-item .rss-info .rss-summary {
  line-height: 18px;
}

.video-card .video-caption {
  padding: 0;
  line-height: unset;
}

.image-caption .card-body {
  padding-top: 3px;
  padding-bottom: 15px;
}

.clear-caption {
  background: none !important;
  border: none !important;
}

FIGURE,
FIGCAPTION {
  margin: 0;
  padding: 0;
}

.img-grow {
  position: relative;
  overflow: hidden;
}
.img-grow IMG {
  transition: transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.img-grow:hover IMG {
  transform: scale(1.1);
}

/*============ MISC ============*/

FOOTER .row P A[target="_blank"].direct-edit::after {
  content:"";
}

.get-involved .nav-tabs .nav-link,
.staff-directory-page .nav-tabs .nav-link {
   text-align: center;
  }
  
.tab-content.blue_bg .panel-title > A {
    color: #fff; 
    }


.tabs-container .tab-content.blue_bg .panel-heading A.collapsed:after {
     content: "+";
  font-size: 30px;
  left: 0;
  top: -2px;
  color: #fff;
}


@media (max-width: 768px) {
DIV.col-md-1 {
  display: none;
  }
}

/*
#OK - add underline on links on links in rows default - adjusts padding on slick container when used in col-md-10 - grad admission specific */
DIV.col-md-10 .content.slick-container.text-left {
  margin-top: -22px;
  margin-bottom: -12px;
}

/*
#OK - add underline on links on links in rows default */
.row A {
  text-decoration: underline;
}

SECTION.section-page.blue_bg .row .wysiwyg UL>LI A {
    color: var(--teal);
}

.row .related-links.rl-greybordered LI A, .row .related-links.rl-outline LI A, .row .related-links.rl-darkblue LI A, .row .related-links.rl-outlinebordered LI A  {
  text-decoration: none;
} 

.row .card A {
  text-decoration: none;
}

.row .card LI A {
  text-decoration: underline;
}

.row .card LI A:hover {
  text-decoration: none;
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}

.row .card A:not(.btn):hover {
  text-decoration: underline;
}

.row .related-links.rl-greybordered LI A:hover, .row .related-links.rl-outline LI A:hover, .row .related-links.rl-darkblue LI A:hover, .row .related-links.rl-outlinebordered LI A:hover  {
  text-decoration: underline;
} 


.row FIGCAPTION A:first-of-type {
    text-decoration: none;
}

.row A.carousel-control-prev ,.row A.carousel-control-next {
  text-decoration: none;
}

.row A:hover, .row P A:hover, .row LI A:hover  {
  text-decoration: none;
  color: var(--dark-blue);
  /* font-weight: 400; /* was: 500, then completely commented out at the realization Gotham "Book" and "Medium" are used rather chaotically. | EN - 2025/10/18 */
}

/* OK - hover on page section blue back - links hover to gold instead of blue */
.section-page.blue_bg .row A:not(.btn):hover {
  color: var(--ung-gold);
}

.section-page .accordion-container LI.panel A.collapsable-pane:hover {
  color: var(--ung-blue);  
}

.section-page .accordion-container.blue_bg.pt-2.pb-2.mt-3.mb-3 LI.panel A.collapsable-pane:hover {
  color: var(--teal);  
}

.accordion-container.wppromo .panel-body A[href*="catalog.ung.edu"]:hover {
  color: var(--ung-blue);
}

.row .blue_bg P A:not(.btn):hover, .row .blue_bg LI A:not(.btn):hover  {
  color: var(--teal);
}

/* #OK - Keeps text size same on hover */
.row A.btn:hover {
  font-weight: 700;
}

/* #OK - adds margin top spacing - also space when stacking -  */
.row A.btn:not(.card) {
  margin-top: 1rem;
}

/* #OK - targets Home page clive chooser buttons section */
.student-decision-section .row A.btn {
  margin-top: 0;
  color:  #fff;
}

/*=========
#OK - Removed underline on btn and allows link on button underline text - menu header rules
===========*/

.row A.btn, .megamenu-container .row A {
  text-decoration: none;
}

.row A.btn-link {
  text-decoration: underline;
}

.row.mm-sec-title  A:hover {
  text-decoration: underline;
}

.row .slick-container FIGCAPTION LI A {
    text-decoration: underline;
}

.row .slick-container FIGCAPTION LI A:hover {
    text-decoration: none;
    font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}


/*=========
#OK - ICONS New Window - Lock - Both 
==========*/

.accordion-inner-grey .section-expandable A.btn.mr-3.btn-primary:hover::after,
.accordion-inner-grey .section-expandable A.btn.mr-3.btn-primary:focus::after
 {
  content:"";
}

@media (max-width: 768px) {
  .accordion-inner-grey .section-expandable A.btn.mr-3.btn-primary::after,
  .accordion-inner-grey .section-expandable A.btn.mr-3.btn-primary:focus::after {
  content:"";
    }
}

.accordion-container .row P A[target="_blank"]:not(.btn)::after {
  font-family: "Font Awesome 5 Free"; 
  content: "\f35d"; 
  font-weight: 900; 
  position: relative;
  bottom: 1px; 
  padding-left: 5px; 
  display: inline-block; 
  font-size: small;
}

 .accordion-container LI A[target="_blank"]:hover::after {
 font-family: "Font Awesome 5 Free"; 
  content: "\f35d"; 
  font-weight: 900; 
  position: relative;
  bottom: 1px; 
  padding-left: 5px; 
  display: inline-block; 
  font-size: small; 
 }


#navbar-mm A[target="_blank"].dropdown-item:hover::after,
.row P A[target="_blank"]:not(.btn)::after, 
.row TABLE A[target="_blank"]:not(.btn):hover::after,
.row UL:not(.related-links) LI A[target="_blank"]:hover::after,
.row UL:not(.accordion-inner-grey) LI A[target="_blank"]:hover::after,
.row UL:not(.related-links) LI A[target="_blank"]:focus::after,
.row UL:not(.accordion-inner-grey) LI A[target="_blank"]:focus::after,
 FOOTER UL LI A[target="_blank"]::after { 
  font-family: "Font Awesome 5 Free"; 
  content: "\f35d"; 
  font-weight: 900; 
  position: relative;
  bottom: 1px; 
  padding-left: 5px; 
  display: inline-block; 
  font-size: small;
}

#navbar-mm A.lock.dropdown-item:hover::after,
.row P A.lock:not(.btn)::after, 
.row UL:not(.related-links) A.lock:hover::after,
.row UL:not(.related-links) A.lock:focus::after { 
  font-family: "Font Awesome 5 Free"; 
  content: "\f023"; 
  font-weight: 900; 
  padding-left: 5px; 
  position: relative;
  bottom: 1px; 
  display: inline-block; 
  font-size: small;
} 

.row OL LI A[target="_blank"]:hover::after,
.row OL LI A[target="_blank"]:focus::after {
    font-family: "Font Awesome 5 Free"; 
  content: "\f35d"; 
  font-weight: 900; 
  position: relative;
  bottom: 1px; 
  padding-left: 5px; 
  display: inline-block; 
  font-size: small;
}

#navbar-mm A[target="_blank"].lock.dropdown-item:hover::after,
.row P A.lock[target="_blank"]:not(.btn)::after, 
.row UL:not(.related-links) LI A.lock[target="_blank"]:hover::after,
.row UL:not(.related-links) LI A.lock[target="_blank"]:focus::after { 
  font-family: "Font Awesome 5 Free"; 
  content: "\f023  \f35d"; 
  font-weight: 900; 
  padding-left: 5px; 
  position: relative;
  bottom: 1px; 
  display: inline-block; 
  font-size: small;
} 

@media (max-width: 768px) {
  .row UL:not(.related-links) LI A[target="_blank"]::after,
  .row TABLE A[target="_blank"]:not(.btn)::after,
  .row OL LI A[target="_blank"]::after {
  font-family: "Font Awesome 5 Free"; 
  content: "\f35d"; 
  font-weight: 900; 
  position: relative;
  bottom: 1px; 
  padding-left: 5px; 
  display: inline-block; 
  font-size: small;
  }


  .row UL:not(.related-links) A.lock::after,
  .row OL LI A.lock::after { 
  font-family: "Font Awesome 5 Free"; 
  content: "\f023"; 
  font-weight: 900; 
  padding-left: 5px; 
  position: relative;
  bottom: 1px; 
  display: inline-block; 
  font-size: small;
  } 

  .row UL:not(.related-links) LI A.lock[target="_blank"]::after,
  .row OL LI A.lock[target="_blank"]::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f023  \f35d"; 
    font-weight: 900; 
    padding-left: 5px; 
    position: relative;
    bottom: 1px; 
    display: inline-block; 
    font-size: small;
  } 
}

/* #OK - Related Icons 2.0 */

@media (min-width: 768px) {
     
  .row UL.no-icon LI A[target="_blank"]:hover::after,
  .row UL.no-icon LI A[target="_blank"]:focus::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f35d"; 
    font-weight: 900; 
    position: relative;
    bottom: 1px; 
    padding-left: 5px; 
    display: inline-block; 
    font-size: small;
  } 
 
.row UL.no-icon A.lock:hover::after,
  .row UL.no-icon A.lock:focus::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f023"; 
    font-weight: 900; 
    padding-left: 2px; 
    position: relative;
    bottom: 1px; 
    display: inline-block; 
    font-size: small;
  } 
 
  .row UL.no-icon LI A.lock[target="_blank"]:hover::after,
  .row UL.no-icon LI A.lock[target="_blank"]:focus::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f023  \f35d"; 
    font-weight: 900; 
    padding-left: 5px; 
    position: relative;
    bottom: 1px; 
    display: inline-block; 
    font-size: small;
  } 
  
  .row UL.icon-link LI A[target="_blank"]:hover::after,
  .row UL.icon-link LI A[target="_blank"]:focus::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f35d"; 
    font-weight: 900; 
    position: relative;
    bottom: 1px; 
    padding-left: 20px; 
    display: inline-block; 
    font-size: small;
  } 

  .row UL.icon-link A.lock:hover::after,
  .row UL.icon-link A.lock:focus::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f023"; 
    font-weight: 900; 
    padding-left: 16px; 
    position: relative;
    bottom: 1px; 
    display: inline-block; 
    font-size: small;
  } 

  .row UL.icon-link LI A.lock[target="_blank"]:hover::after,
  .row UL.icon-link LI A.lock[target="_blank"]:focus::after{ 
    font-family: "Font Awesome 5 Free"; 
    content: "\f023  \f35d"; 
    font-weight: 900; 
    padding-left: 22px; 
    position: relative;
    bottom: 1px; 
    display: inline-block; 
    font-size: small;
  } 
}

@media (max-width: 768px) {
   #megamenu A[target="_blank"].dropdown-item::after,
  .row UL.no-icon LI A[target="_blank"]::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f35d"; 
    font-weight: 900; 
    position: relative;
    bottom: 1px; 
    padding-left: 5px; 
    display: inline-block; 
    font-size: small;
  } 


  .row UL.icon-link LI A[target="_blank"]::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f35d"; 
    font-weight: 900; 
    position: relative;
    bottom: 1px; 
    padding-left: 20px; 
    display: inline-block; 
    font-size: small;
  } 
   #megamenu A.lock.dropdown-item::after,
  .row UL.no-icon A.lock::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f023"; 
    font-weight: 900; 
    padding-left: 5px; 
    position: relative;
    bottom: 1px; 
    display: inline-block; 
    font-size: small;
  } 

  .row UL.icon-link A.lock::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f023"; 
    font-weight: 900; 
    padding-left: 16px; 
    position: relative;
    bottom: 1px; 
    display: inline-block; 
    font-size: small;
  } 
   #megamenu A[target="_blank"].lock.dropdown-item::after,
  .row UL.no-icon LI A.lock[target="_blank"]::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f023  \f35d"; 
    font-weight: 900; 
    padding-left: 5px; 
    position: relative;
    bottom: 1px; 
    display: inline-block; 
    font-size: small;
  } 
  
  .row UL.icon-link LI A.lock[target="_blank"]::after { 
    font-family: "Font Awesome 5 Free"; 
    content: "\f023  \f35d"; 
    font-weight: 900; 
    padding-left: 22px; 
    position: relative;
    bottom: 1px; 
    display: inline-block; 
    font-size: small;
  } 
}


/* #OK - takes out external icons in SM icons */
.social-icons A[target="_blank"]::after {
  content:"";
  display: inline;
}

.transcript {
    padding: 12px 0 12px 20px;
}

.row DIV.transcript A {
    text-decoration: underline;
}

.row .news-fd .slick-slide .card.border-trans:hover {
    box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2); /* EN 2025-06: I don't understand the earlier override, so I'm overriding the override again here. */
}

.row .news-fd .card.no-flex A {
    text-decoration: none;
}

.row .news-fd .card.no-flex A:hover H3,
.row .news-fd .card.no-flex A:hover H4,
.row .news-fd .card.no-flex A:hover H5{
    text-decoration: underline;
}

.row .news-fd .card.no-flex A:hover P {
    text-decoration: none !important; /* EN 2025-06: Long text (P-tags) rarely looks good underlined.  */
}

/* #OK  slateform  modifications */
.blue_bg DIV[id*="slateform"] {
    color: #fff;
    padding: 1rem 0;   
}

.action.form_action BUTTON {
  padding: 2px 8px;
}
.action.form_action BUTTON:hover {
  background: white;
}

.section-page DIV[id*="slateform"] .form_label SPAN {
  color: var(--dark-blue) !important;
}

.section-page .blue_bg DIV[id*="slateform"] .form_label SPAN {
  color: #fff !important;
}

/* #OK - modify red inline style for required field 7/13/21 */
.section-text .form_container .form_label SPAN {
    color: var(--dark-blue) !important;
}

.section-text DIV.blue_bg .form_container .form_label SPAN {
  color: var(--teal) !important;
}

.section-text DIV.blue_bg .form_label,
.section-text DIV.blue_bg .form_responses,
.section-text DIV.blue_bg .wysiwyg P   {
    color: #fff;
}

SECTION .container .row .col-md-4 SECTION:first-of-type H2.size-24.text-blue {
    margin-top: 0px;
}

SECTION .container .row .col-md-4 SECTION:nth-of-type(2) H2.size-24.text-blue {
    margin-top: 8px;
}

.section-text.white_bg .container .row .section-text .container .row .wysiwyg P {
  color: var(--body-text);
}

SECTION.blue_bg .news-fd .fd-list.fd-inline .rss-item .rss-title A {
  color: #fff;
}

SECTION.blue_bg .news-fd .fd-list.fd-inline .rss-item .rss-title A:hover {
  color: var(--teal);
}

.accordion-container SECTION.section-expandable {
  padding-top: .8rem;
}

/* Library */

.library-hours-title {
  font-weight: 400; /* was: 500 | EN - 2025/10/18 */
}

@media print {

    /* sa国际传媒官网网页入口 logo graphic - print quality */
    BODY:before { 
      content:url("https://ung.edu/_uploads/images/2021/template/ung_sigh_blue-gold-620x80.png");
      position:relative;
      left: 0;
    }
    
    /* Hide items */
    HEADER,.nav-item:not(.logo-container), NAV.megamenu-container, 
    .ivy-main.ivy-t-circle .ivy-circle, DIV.ivy-main,.breadcrumbs, 
    .carousel-indicators, .carousel-control-next, .carousel-control-prev, 
    .footer-top DIV.col-md-3:not(.footer-logo-wrap),
    .google_translate, .skiptranslate.goog-te-gadget,
    DIV.image-header.only-content, FOOTER .footer-top, 
    #back-to-top I, .snapwidget-widget, DIV.video-header,
    .externalvideo1, .externalvideo2, .externalvideo3, .externalvideo4, 
    .externalvideo5, .externalvideo6, .externalvideo7, .externalvideo8,
    .transcript, .footer-bottom UL.links,
    .footer-bottom P:nth-of-type(2n) {
      display: none;
    }
    
    /* Global Settings */
    BODY {
      margin: 0;
      color: #000;
      background-color: #fff !important;
    }

    H1 {font-size: 2.4rem !important;}
    H2 {font-size: 2rem !important;}
    H3 {font-size: 1.6rem !important;}
    H4 {font-size: 1.4rem !important;}
    H5 {font-size: 1.125rem !important;}
    H6 {font-size: 1rem !important;}
    
    .row UL LI, .row OL LI {
      margin-bottom: 10px;
      line-height: 1;
    }

    *:not(.gradient-bottom) {
      background-image: none !important;
    }
  
    .page.megamenu-page {
      padding: 32px 12px 6px 12px !important;
    }

    .fixed-top {
     position: initial;
    }

    /* Boostrap column modifications */
    .offset-md-2.col-md-8 {
      margin: 0;
      max-width: 100%;
      flex: 0 0 100%;
    }

    /* Slate form modifications */
    .section-text, DIV[id*="slateform"] {
       border: 1px solid var(--dark-gray);
     }

     DIV[id*="slateform"] .form_label {
       color: #000;
     }

    /* Target Texts to be black */
      
    A.btn, .img-story-inner .content H2, .img-story-inner .content H3,
    .img-story-inner .content H4, .img-story-inner .content P,
    .wysiwyg P, .ppoints H2, .ppoints P {
      color: #000 !important;
    }

     /* Override BS library rule*/
      
    .container {
      min-width: initial !important;
      max-width: 100%;
    }
  
    /* Sets sa国际传媒官网网页入口 logo header to print only on first page */
   .navbar {
    display: initial;
    }
  
  
    /* Hides background images in jumbotron  */
  
    DIV.jumbotron.jumbotron-fluid.img-story IMG {
      visibility:hidden;
    }
    
    /* Might not be useable dues to dynamic use of jumbotron  */
    DIV.jumbotron.jumbotron-fluid.img-story {

    }

    .img-story-inner .content {
      text-align: center !important;
    }

   /* change row colors to white */
    FOOTER .footer-top, FOOTER .footer-bottom, FOOTER .ga_wrap .google_translate, .main-navbar,
    .blue_bg, .grey_bg, .lightgrey_bg, .liteblue_bg, .jumbotron {
      background-color: #fff;
    }
  
 /* misc */
 
    TABLE, FIGURE  {
      page-break-after: avoid;
    }

    SECTION .filter-menu {
      border: 2px black solid;
    }

    .carousel-padding .carousel-item {
      padding: 0;
    }
  
    .related-links A {
      text-decoration: underline !important;
    }
    
     /* remove lines in youtube video containers */
    .container.pt-3.pb-3.text-left .row .col .card{
    border: none;
    }

    /* New Window / lock Icons  */ 
     
    .row P A[target="_blank"]::after,
    .row UL:not(.related-links) LI A[target="_blank"]::after {     
      font-family: "Font Awesome 5 Free"; 
      content: "\f35d"; 
      font-weight: 900; 
      position: relative;
      bottom: 1px; 
      padding-left: 5px; 
      display: inline-block; 
      font-size: small;
    }
        
    .row P A.lock::after,
    .row UL:not(.related-links) A.lock::after {
      font-family: "Font Awesome 5 Free"; 
      content: "\f023"; 
      font-weight: 900; 
      padding-left: 5px; 
      position: relative;
      bottom: 1px; 
      display: inline-block; 
      font-size: small;
    } 
   
    .row P A.lock[target="_blank"]::after,
    .row UL:not(.related-links) LI A.lock[target="_blank"]::after { 
      font-family: "Font Awesome 5 Free"; 
      content: "\f023  \f35d"; 
      font-weight: 900; 
      padding-left: 5px; 
      position: relative;
      bottom: 1px; 
      display: inline-block; 
      font-size: small;
    } 
}

 .wysiwyg CODE {
   font-size: 1.1rem;
   color: #000;
   word-wrap: break-word;
}

.blue_bg.section-page .wysiwyg CODE {
  color: #fff;
}

/* OK - Hide Snapwidget - think this is already removed within CMS */
#iFrameResizer0.snapwidget-widget {
  display: none;
}

UL.dropdown-menu LABEL[for="stem"], .filter-container BUTTON.filtered-stem {
    text-transform: uppercase;
}

/* OK - Slate form headers */
.form_pages DIV.form_header .form_label {
    font-weight: bold;
  font-size: 1.2rem;
    background: inherit;
    padding: 4px;
}