  :root {
  --primary-color: #143a5a;
  --primary-alt: #0d4471;
  --secondary-color: #fdd510;
  --white: #ffffff;
  --light-gray: #dde5e9;
  --extra-light-gray: #f4f4f4;
  --dark-gray: #747775;
  --black: #000000;
}

/* REM */
* {
  font-size: 16px;
}
@media (max-width: 1138px) {
  * {
    font-size: 16px;
  }
}
@media (max-width: 860px) {
  * {
    font-size: 14px;
  }
}

html,
body {
  margin: 0 !important;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

section {
  position: relative;
}

body {
  color: var(--primary-color);
  line-height: normal;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-gray {
  background-color: var(--light-gray) !important;
}

.bg-dark-gray {
  background-color: var(--dark-gray) !important;
  color: var(--white);
}

.bg-primary {
  background-color: var(--primary-color) !important;
  color: var(--white);
}

.bg-primary-alt {
  background-color: var(--primary-alt) !important;
  color: var(--white);
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color);
}

.bg-overlay {
  position: relative;
  color: var(--white);
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-overlay::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.41));
}

.text-white {
  color: var(--white) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-muted {
  color: #42484c !important;
}

/* headings - start */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", serif;
  font-weight: 700;
}
h1,
.h1 {
  font-size: 2.75rem;
}

h2,
.h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3,
.h3 {
  font-size: 1.8rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
  font-weight: 700;
}

/* headings - end */

/* opacity - start */
.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}
/* opacity - end */

/* text sizes - start */
.font-size-xl {
  font-size: 3rem;
}

.font-size-lg {
  font-size: 2.2rem;
}

.font-size-md {
  font-size: 1.8rem;
}

.font-size-sm {
  font-size: 1.2rem;
}

.font-size-xs {
  font-size: 1rem;
}

/* text sizes - end */

/* links */

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

a[href$=".pdf"]::after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}

a[href$=".xlsx"]::after {
  content: "\f1c3";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}

a[href$=".docx"]::after {
  content: "\f1c2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}

a.external::after {
  content: "\f08e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}
/* end links */

/* buttons - start */
.btn-default,
.content .btn-default {
  font-family: "Montserrat", serif;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  text-transform: none;
  padding: 5px 12px 7px;
  margin: 10px 0;
  border: none;
  border-radius: 10rem;
  width: fit-content;
  min-width: 120px;
  position: relative;
  z-index: 1;
}

.btn-default:hover,
.content .btn-default:hover,
.btn-default:focus {
  color: var(--white);
  background-color: var(--primary-color);
}

/* select the btn that is not :last */
.btn-default:not(:last-child),
header .nav-links a:not(:last-child) {
  margin-right: 10px;
}

.btn-default::before,
.content .btn-default::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-color: var(--primary-alt);
  border-radius: 10rem;

  transition: all 250ms ease-out;
  transform: scale(0);
  transform-origin: center;
}

.btn-default:hover::before,
.content .btn-default:hover::before {
  transform: scaleX(1);
}

.btn-white,
.content .btn-white {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-white:hover,
.content .btn-white:hover {
  color: var(--primary-color);
  background-color: var(--white);
}

.btn-white::before,
.content .btn-white::before {
  background-color: var(--light-gray);
}

.btn-secondary,
.content .btn-secondary {
  background-color: var(--primary-alt);
  color: var(--white);
}

.btn-secondary:hover,
.content .btn-secondary:hover {
  background-color: var(--primary-alt);
}

.btn-secondary::before,
.content .btn-secondary::before {
  background-color: var(--primary-color);
}

.btn-link.focus,
.btn-link:focus {
  text-decoration: none;
}

.btn-block {
  text-align: center;
  display: block;
}

.btn-highlight,
.content .btn-highlight {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-highlight:hover,
.content .btn-highlight:hover {
  background-color: var(--secondary-color);
}

.btn-outline,
.content .btn-outline {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-xl,
.content .btn-xl {
  /* width: 100%; */
  font-size: 1.5rem;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* buttons - end */

/* tables */
table.table {
  margin-bottom: 2rem;
  color: var(--primary-color);
  border-top: 1px solid var(--light-gray);
}

/* alert - start */
.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  border-radius: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: var(--black);
  background-color: var(--secondary-color);
  padding: 30px;
  font-size: 18px;
  font-weight: 400;
}

.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.alert {
  border-radius: 0;
  margin: 0;
  padding: 20px;
  font-size: 18px;
  background-color: var(--secondary-color);
}

.alert span {
  display: inline-block;
  margin-right: 30px;
}

.alert-emergency {
  width: 100%;
  z-index: 100;
  left: 0;
}

.alert-emergency {
  position: static;
}

.alert-emergency .btn-close {
  position: relative;
  float: right;
  margin-top: -20px;
}
/* alert - end */

.fa-exclamation-triangle {
  font-size: 40px;
  color: var(--primary-color);
}

.disclaimer {
  font-size: 16px;
  border-top: 5px solid var(--hilite-color);
  margin: 20px auto 50px;
  padding: 10px 0;
}

img.bg-image {
  -o-object-fit: cover;
  object-fit: cover;
}

img.float-right {
  margin-left: 20px;
  float: right;
}

img.float-left {
  margin-right: 20px;
  float: left;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

dfn {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

iframe,
video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.content a,
a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  background-color: transparent;
}

a:hover {
  color: var(--black);
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

a[href$=".pdf"]::after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}

a[href$=".xlsx"]::after {
  content: "\f1c3";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}

a[href$=".docx"]::after {
  content: "\f1c2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.interior .content ul,
.interior .content ol {
  font-size: 18px;
  font-weight: 300;
}

.interior .content ul li a,
.interior .content ol li a {
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  font-weight: 400;
}

.interior .content ul li a:hover,
.interior .content ol li a:hover {
  border-bottom: none;
}

.form-group .btn-default {
  min-width: 1px;
}

img {
  max-width: 100%;
  height: auto;
}

.content {
  overflow: hidden;
}

.split-section {
  height: auto;
}

.align-center {
  align-items: center;
  text-align: center;
}
.align-right {
  align-items: right;
  text-align: right;
}
.align-left {
  align-items: left;
  text-align: left;
}

div.spacer {
  height: 3rem;
}

/* breadcrumbs */
.breadcrumbs {
  padding-top: 01rem;
  padding-bottom: 0.5rem;
}
.breadcrumbs a {
  padding: 0 0.35rem;
  text-decoration: none;
}
/* events - start */
:not(.index) .events {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.events {
  margin-top: 1rem;
  padding-bottom: 4rem;
}
.events-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding-bottom: 1.5rem;
}

.event-item {
  padding: 0;
  height: 70px;
}

.event-item a.event-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.event-item a.event-wrapper .event-date-wrapper {
  background-color: var(--secondary-color);
  height: 70px;
  width: 82px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* border-left: 2px solid var(--secondary-color); */
  /* border-bottom: 2px solid var(--secondary-color); */
}

.event-item a.event-wrapper:hover,
.event-item a.event-wrapper:focus {
  text-decoration: none;
  color: white;
  background-color: var(--primary-color);
}
.event-item a.event-wrapper:hover .event-date-wrapper,
.event-item a.event-wrapper:focus .event-date-wrapper {
  color: var(--primary-color);
  background-color: var(--white);
  border: 2px solid var(--secondary-color);
}

.event-item .event-details-wrapper {
  border-top: 2px solid var(--secondary-color);
  padding-left: 3rem;
  padding-top: 0.7rem;
  width: 100%;
}
.event-item:last-child .event-details-wrapper {
  border-bottom: 2px solid var(--secondary-color);
}

.event-details-wrapper .event-title {
  display: block;
  font-size: 1.2rem;
  line-height: 1.05;
  font-weight: 600;
}
.event-details-wrapper .event-time {
  display: inline;
  font-weight: 300;
}
.event-details-wrapper .event-location {
  display: inline;
  font-weight: 300;
}
/* events - end */

/* index news - start */
.news-date {
  text-transform: uppercase;
  font-size: 0.75rem;
}
.news-index {
  margin-top: 12rem;
}
.news-index .news-list {
  position: relative;
  z-index: 1;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.news-index .news-item {
  position: relative;
  width: 33%;
  padding-right: 0rem;
  padding-left: 0rem;
  text-decoration: none !important;
}

.news-index .news-item:not(.feature-item)::after {
  content: "";
  height: 120px;
  width: 2px;
  background-color: var(--light-gray);
  position: absolute;
  right: 0;
  top: 0;
}
.news-index .news-item:last-of-type::after {
  display: none;
}
.news-index .news-item:not(.feature-item) {
  padding: 0 2rem;
}
.news-index .news-item:not(.feature-item):first-child {
  padding: 0 2rem 0 0;
}

.news-index .news-item p {
  font-weight: 400;
}

.news-index .news-item .news-image {
  width: 100%;
  aspect-ratio: 9/5;
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: var(--dark-gray);
  display: flex;
}
.news-index .news-item:hover img {
  transform: scale(1.02);
}
.news-index .news-item .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
}
.news-index .news-card-text {
  padding: 0 0.4rem 1rem 0;
}
.news-index .news-card-text h3 {
  margin-bottom: 12px;
}

.news-index .news-item.feature-item {
  width: 100%;
}

.news-index .news-item.feature-item .news-card-text {
  width: 100%;
}
.news-index .news-item.feature-item .news-card-image {
  width: 100%;
}

/* index news - end */

/* split sections */
.split-section {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.testimonial-text {
  padding: 3rem 1.5rem;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  height: 100%;
}
.testimonial-text.testimonial-text-right {
  text-align: right;
  align-items: flex-end;
}
.testimonial-text p.quote {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.testimonial-text.testimonial-text-right p.quote::before {
  left: auto;
  right: -1.5rem;
  top: auto;
  bottom: 0;
  transform: rotate(180deg);
}
.testimonial-text em {
  font-style: italic;
  font-weight: 600;
  color: var(--primary-color);
}

/* centered split section */
.split-section .container {
  position: relative;
  min-height: 400px;
}
.split-centered {
  margin-top: 4rem;
}
.split-section.split-centered .split-image-droplet-right,
.split-section.split-centered .split-image-droplet-left {
  right: 11rem;
}
.split-centered .testimonial-text {
  padding: 3rem 1.5rem;
  max-width: 580px;
  height: 100%;
  margin: 0;
}
.split-centered .testimonial-text.testimonial-text-right {
  text-align: right;
  align-items: flex-end;
}

/* split-sections - end */

/* prefooter - end */

.restrict {
  padding: 0 20%;
}

.figure {
  display: block;
}

.figure-caption {
  color: #42484c;
}

.figure img {
  margin: 0px auto 20px auto;
}

/* paragraph block - start */
.lead-paragraph {
  font-size: 20px;
  display: block;
}

blockquote,
.blockquote-paragraph {
  border-left: 8px solid var(--primary-alt);
  padding-left: 24px;
  margin: 1rem 1rem 1rem 24px;
  color: var(--primary-alt);
  font-family: "Montserrat", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  width: 60%;
  float: right;
}

.blockquote-footer {
  margin-top: 10px;
  color: var(--dark-gray);
}

/* Titles with Drop-Shape */

.droplet-title {
  position: relative;
  text-align: left;
  z-index: 1;
  padding: 1rem 0;
  margin-top: 2rem;
  margin-bottom: 1rem;
  overflow: visible;
}

/* index hero - start */
.hero.hero-index {
  padding-top: 310px;
  height: 100vh;
  min-height: 720px;
  max-height: 920px;
  overflow: visible;
  z-index: 99;
}

.hero.hero-index .hero-index-content {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  /* padding: 0 10%; */
  height: 100%;
  text-align: center;
  font-weight: bold;
}

.hero-index .hero-logo {
  width: 206px;
  height: 206px;
  object-fit: contain;
  margin: 1.5rem auto;
}
.hero-index .hero-logo img {
  width: 100%;
  height: auto;
}

.hero.hero-index video#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero.hero-index .video-overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
}
.hero.hero-index .play-pause,
.hero.hero-index .play {
  position: absolute;
  z-index: 1;
  color: var(--white);
  background-color: var(--primary-color);
  width: 2rem;
  height: 2rem;
  bottom: 1rem;
  left: 1rem;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6rem;
}

.hero.hero-index .play-pause img,
.hero.hero-index .play img {
  height: 0.75rem;
  width: auto;
  border-radius: 0;
}

.hero.hero-index .play-pause:hover,
.hero.hero-index .play-pause:focus {
  background-color: var(--primary-alt);
}

.hero {
  height: 22.5rem;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero.hero-index video,
.hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.hero .hero-heading {
  height: 100%;
  text-align: left;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}
.hero .hero-heading h1 {
  font-size: 4rem;
}
.hero .hero-heading h1,
.hero .hero-heading h2 {
  color: white;
  padding-bottom: 12px;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .hero .hero-overlay-logo {
    height: 24rem;
    width: 24rem;
    transform: translate(3.5%, -5rem);
  }
  .hero .hero-heading {
    bottom: 0;
    width: 100%;
  }
}
/* index hero - end */

/* degree finder */
.programfinder {
  padding-top: 1rem;
  padding-bottom: 6rem;
  min-height: 500px;
  background-color: var(--light-gray);
  overflow: hidden;
}

.programfinder .programfinder-content {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.programfinder p {
  max-width: 850px;
}
.programfinder-content .degree-buttons {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.programfinder .btn.btn-default {
  padding: 0.1rem 1.2rem;
  width: 100%;
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  height: 100%;
}
/* search */
.programfinder .search-container {
  border-radius: 2rem;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  width: 90%;
  max-width: 880px;
  padding: 0.25rem 1rem 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.programfinder .search-container input {
  width: calc(100% - 35px);
  height: 40px;
  margin: 0;
  border: none;
  color: var(--primary-color);
  background-color: transparent;
  padding-top: 8px;
}
.programfinder .search-container input::placeholder {
  color: var(--primary-color);
}
.programfinder .search-container button {
  background-color: transparent;
  border: none;
  margin: 0;
  width: 30px;
  height: 30px;
  border-radius: 0 2rem 2rem 0;
  color: var(--primary-color);
  padding: 0.25rem;
  cursor: pointer;
}
.programfinder .search-container button span::before {
  font-weight: 1rem;
}
/* degree finder xtd*/
.programfinder.df-extended {
  padding-top: 8rem;
  padding-bottom: 4rem;
  margin-bottom: 8rem;
  min-height: 500px;
  /* background-color: var(--light-gray); */
  overflow: hidden;
}

/* swoop cta */
.swoop-cta {
  margin-top: 4rem;
  padding-bottom: 3rem;
  min-height: 560px;
}
.swoop-cta .swoop-cta-content h2,
.swoop-cta .swoop-cta-content h3,
.swoop-cta .swoop-cta-content h4,
.swoop-cta .swoop-cta-content h5,
.swoop-cta .swoop-cta-content h6,
.swoop-cta .swoop-cta-content p {
  color: var(--white);
}
.swoop-cta .swoop-cta-image {
  z-index: 2;
}
.swoop-cta .swoop-cta-content {
  display: flex;
  flex-flow: column nowrap;
  align-items: left;
  justify-content: center;
  gap: 0.5rem;
  z-index: 2;
}
.hex-image-wrapper {
  margin: -4rem auto 0;
  background-color: var(--secondary-color);
  padding: 4px;
  height: 36rem;
  width: 28rem;
  object-fit: cover;
  clip-path: polygon(0% 15%, 50% 0, 100% 15%, 100% 85%, 50% 100%, 0% 85%);
}
.hex-image-wrapper2 {
  background-color: white;
  height: 100%;
  width: auto;
  padding: 8px;
  clip-path: polygon(0% 15%, 50% 0, 100% 15%, 100% 85%, 50% 100%, 0% 85%);
}
.hex-image {
  object-fit: cover;
  height: 100%;
  width: auto;
  clip-path: polygon(0% 15%, 50% 0, 100% 15%, 100% 85%, 50% 100%, 0% 85%);
}
/* swoop cta - end */

/* schools listing */
.schools-listing {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.schools-listing .schools-listing-cards {
  padding-top: 3rem;
}
.schools-listing .school-link {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6.5rem 2rem;
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
  color: white;
  text-decoration: none;
  background-size: cover !important;
  background-position: center !important;
  background-blend-mode: multiply;
}
/* end schools listing */

/* cta card list */
section.cta-list {
  position: relative;
  margin-top: 4rem;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.card {
  border-radius: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-flow: column nowrap;

  align-items: center;
}
.card .card-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0;
  background-size: cover;
}
.card .card-content {
  padding: 2rem 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 0.75rem;
}
.card .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.droplet-section-left {
  position: absolute;
}
/* end cta card list */

/* split sections */
.split-image {
  margin-bottom: 4rem;
  margin-top: 2rem;
}
.split-image .split-image-col {
  aspect-ratio: 1/1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.split-image.split-bg-gray {
  position: relative;
}
.split-image.split-bg-gray .text-bg-gray {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background-color: var(--extra-light-gray);
  z-index: 2;
}
.split-image.split-bg-gray .split-image-col {
  aspect-ratio: unset;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
/* end split sections */
/* wide-cards */
.wide-cards {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Accordion - start */
.accordion {
  border-bottom: none;
  margin-bottom: 2.5rem;
}
.accordion .card-header {
  padding: 0px;
  border-radius: 0px;
  border: none;
  width: 100%;
}

.accordion .card {
  border: 0.5px solid var(--light-gray);
  margin-bottom: 0;
  width: 100%;
}
.accordion .card-body {
  width: 100%;
  background-color: var(--white);
  padding: 0.5rem 1.25rem;
  border: none;
}

.accordion .card-header .accordion-trigger {
  font-size: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 16px;
  line-height: 1.5;
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  font-weight: 700;
}
.accordion .card-header .accordion-trigger.collapsed {
  background-color: var(--white);
  color: var(--primary-color);
}
.accordion .card-header .accordion-trigger:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.accordion .card-header .accordion-trigger:hover .fas {
  color: var(--primary-color);
}

.accordion .card-header .accordion-trigger .fas {
  font-size: 24px;
  padding: 0 5px;
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--white);
}

.accordion .card-header .accordion-trigger.collapsed .fas {
  color: var(--primary-color);
}

.accordion .card-header .accordion-trigger[aria-expanded="false"] .fa-angle-up {
  display: none;
}

.accordion
  .card-header
  .accordion-trigger[aria-expanded="true"]
  .fa-angle-down {
  display: none;
}
/* Accordion - end */

/* CTA banner*/

/* Wide Cards */
.wide-card {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: left;
}
.wide-card {
  background-size: cover;
  background-position: center;
  padding: 0;
  border-radius: 0;
  border: none;
}
/* .wide-card.card-blue {
  background-color: var(--primary-color);
  color: var(--white);
  background-image: url(/_resources/css/images/swipe-narrow__blue1.svg);
}
.wide-card.card-yellow {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  background-image: url(/_resources/css/images/swipe-narrow__yellow1.svg);
} */

.wide-card .card-image {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
.wide-card .card-content {
  padding: 1rem;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  gap: 0.25rem;
  text-align: left;
}
.wide-card .card-image-right {
  order: 2;
}
/* end Wide Cards */

/* Card Grids */
.card-grid {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.card-grid .card.card-vertical {
  padding: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
}

.card-grid .card.card-vertical .card-image {
  background-color: var(--light-gray);
  width: 100%;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
}
.card-grid .card .card-content {
  padding: 1rem;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* end Card Grids */

/* CTA Grids */
/* CTAs with Image Overlay */
.cta-grid {
  margin: 2rem auto;
}
.overlay-link {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-repeat: none;
  background-position: center, center;
  background-blend-mode: multiply;
  color: var(--white);
  min-height: 180px;
  margin: 0 auto;
  width: calc(33% - 1rem);
  padding: 2rem 1rem;
}

.overlay-link a {
  color: white;
  text-decoration: none;
  transition: all 200ms ease-out;
}
.overlay-link a h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.overlay-link:hover a {
  color: var(--secondary-color);
  text-decoration: none;
  transform: scale(0.98);
}

/* CTAs with Icons */
.icon-link {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon-link a {
  text-decoration: none;
  text-transform: uppercase;
  width: 80%;
  padding: 3rem 1rem;
  transition: transform 300ms ease-out;
}
.icon-link:hover a {
  transform: scale(0.95);
}
.icon-link img {
  width: 70%;
  margin: 0 auto;
}

/* Full Width Split Sections */
/* fw grey text box */
.split-image.fw-split-bg-gray {
  position: relative;
  max-width: 1440px;
}
.split-image.fw-split-bg-gray .text-bg-gray {
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: 10%;
  padding: 1.25rem;
  background-color: var(--extra-light-gray);
  z-index: 2;
  min-height: 320px;
  width: 50%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
.split-image.fw-split-bg-gray .split-image-col {
  aspect-ratio: unset;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
/* end fw grey text box */
.fw-split-image {
  margin-top: 8rem;
  margin-bottom: 4rem;
  max-width: 1440px;
}
.basic-split-text {
  padding: 3rem 1.5rem;
  max-width: 720px;
  margin: 0 0 0 1.5rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  float: right;
  height: 100%;
}
.split-image-col {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* blue banner */

.fw-split-blue-banner .split-image-col {
  margin: -2rem 0 -2rem 4rem;
  padding: 0;
  max-width: 700px;
  min-height: 300px;
  background-color: transparent;
  overflow: visible;
  background-position: center;
}

.bg-swipe .cta-grid .icon-link {
  z-index: 2;
}

/* Full Width Grid with Overlays */
.cta-grid.four-up {
  margin-top: 8rem;
  margin-bottom: 6rem;
}
.cta-grid.four-up .overlay-link {
  width: calc(25% - 1rem);
  padding: 2rem 1rem;
}

/* SCHOOL DETAILS */
/* top section - programs*/
.school-programs {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 12rem;
}
.school-programs .school-programs-content,
.school-programs .school-programs-content * {
  z-index: 2;
}
.school-programs .school-intro {
  margin-bottom: 4rem;
}
.school-programs .school-intro .btn.btn-default {
  float: right;
}
.school-programs .school-links {
  margin-bottom: 2rem;
}
.school-programs .school-links .btn.btn-default {
  width: 100%;
}
.school-programs .school-links h3 {
  font-size: 1.5rem;
}

.school-content {
  position: relative;
  overflow: visible;
}

.school-content > section,
school-content > .container {
  z-index: 1;
}

.award-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.award-item-text {
  max-width: 720px;
}

.droplet-graphic {
  width: 6rem;
  height: 6rem;
  /* background-image: url(/_resources/css/images/droplet__yellowleft.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.droplet-graphic img {
  width: 77.5%;
  height: auto;
}

/* Faculty Cards */
a.faculty-card {
  margin-bottom: 1rem;
  padding: 0;
  border-radius: 0;
  border: none;
  display: flex;
  z-index: 1;
  text-decoration: none;
}
.faculty-card .faculty-card-image {
  width: 25%;
  aspect-ratio: 4/6;
  background-size: cover;
  background-position: center;
}
.faculty-card .faculty-card-text {
  background-color: var(--light-gray);
  padding: 1rem;
  width: 75%;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  margin-right: 1rem;
  text-align: left;
  gap: 8px;
  font-style: normal;
}
.faculty-card .faculty-card-text p {
  color: var(--primary-color);
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}
.faculty-card .faculty-card-text p em {
  font-style: normal;
  font-weight: bold;
}
.faculty-card:hover .faculty-card-text {
  background-color: var(--secondary-color);
}

/* Faculty Directory */
/* Faculty Search */
/* search */
.employee-directory .search-container,
.programfinder .search-container {
  border-radius: 2rem;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  width: 100%;
  max-width: 880px;
  padding: 0.25rem 1rem 0.5rem 1rem;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.employee-directory .search-container input,
.programfinder .search-container input {
  width: calc(100% - 35px);
  margin: 0;
  border: none;
  color: var(--primary-color);
  background-color: transparent;
}
.employee-directory .search-container input::placeholder,
.programfinder .search-container input::placeholder {
  color: var(--primary-color);
}
.employee-directory .search-container button,
.programfinder .search-container button {
  background-color: transparent;
  border: none;
  margin: 0;
  width: 30px;
  height: 30px;
  border-radius: 0 2rem 2rem 0;
  color: var(--primary-color);
  padding: 0.25rem;
  cursor: pointer;
}
.employee-directory .search-container button span::before,
.programfinder .search-container button span::before {
  font-weight: 1rem;
}

.simple-filters-grid {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.simple-filters-grid > * {
  margin: 0;
  margin-bottom: 0.75rem;
  padding: 0;
}
.simple-filters-grid .btn-filter {
  padding: 1rem;
  width: calc(100% - 1rem);
  height: 100%;
  min-height: 65px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.45rem;
  height: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: var(--light-gray);
  border: 2px solid var(--dark-gray);
  margin: 0;
}

.simple-filters-grid .btn.btn-filter[data-selected="false"] {
  color: var(--dark-gray);
  border: 2px solid var(--dark-gray);
  background-color: var(--light-gray);
}
.simple-filters-grid .btn.btn-filter[data-selected="true"] {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-alt);
}

.simple-filters-grid .btn.btn-filter[data-selected="true"]:hover,
.simple-filters-grid .btn.btn-filter[data-selected="false"]:hover {
  border-color: var(--secondary-color);
}

/* Pagination */
.paginationjs ul {
  display: flex;
  list-style: none;
  margin: 0 auto;
  justify-content: center;
  gap: 6px;
}
.paginationjs ul li {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  background-color: var(--extra-light-gray);
}
.paginationjs ul li:hover,
.paginationjs ul li:focus {
  background-color: var(--secondary-color);
}
.paginationjs ul li.active {
  color: var(--white);
  background-color: var(--primary-alt);
}
.paginationjs ul li.active a {
  color: var(--hilite-color) !important;
}
.paginationjs ul li.disabled {
  background-color: var(--extra-light-gray);
  color: var(--dark-gray);
}
.paginationjs ul li.paginationjs-prev {
  border-radius: 0.5rem 0 0 0.5rem;
}
.paginationjs ul li.paginationjs-next {
  border-radius: 0 0.5rem 0.5rem 0;
}

/* Program-Finder */
.programfinder p {
  max-width: 880px;
}
.simple-filters-grid {
  margin-left: 0.5rem;
}
.simple-filters-grid .btn.btn-filter[data-selected="false"] svg {
  fill: var(--light-gray);
  height: 44px;
  width: auto;
}
.simple-filters-grid .btn.btn-filter[data-selected="true"] svg {
  fill: var(--secondary-color);
  height: 44px;
  width: auto;
}
.simple-filters-grid .btn.btn-filter[data-selected="false"] svg path {
  fill: var(--dark-gray) !important;
}
.simple-filters-grid .btn.btn-filter[data-selected="true"] svg path {
  fill: var(--secondary-color) !important;
}
#programFilters {
  transition: all 0.2s ease-out;
}

#programListingContainer {
  margin-top: 4rem;
  margin-bottom: 2rem;
  transition: all 1s ease-out;
}
a.program-card {
  margin-bottom: 2rem;
  padding-top: 0.65rem;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
a.program-card:hover,
a.program-card:focus {
  text-decoration: none;
  /* background-color: rgba(254, 209, 3, 0.65); */
  background-color: var(--extra-light-gray);
  transform: scale(0.99);
}
.program-card-image {
  aspect-ratio: 3/2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.program-card-text {
  padding: 1rem 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  text-align: left;
}

.program-card-text .program-type{
		display: grid;
		justify-content: space-between;
		width: 30%;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, auto); 
}

.program-card-text .program-type {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto the next line if necessary */
    justify-content: space-between; 
}
.tax-chip.program-type  {
	grid-column: span 1; /* Each chip takes one column */
    text-align: center; /* Center-align the text */
    box-sizing: border-box; /* Ensures padding/margins are included in width */
	font-weight:600;
	display: flex;
	justify-content: center;
}

.tax-chip.location-chip  {
	display: flex;
	justify-content: center;
	height: min-content;
}

.tax-chip.program-type.bachelor {
  background-color: #003A5D;
  color: #FFD100;
}
.tax-chip.program-type.associate {
  background-color: #0069A7;
  color: #fff;
}
.tax-chip.program-type.online {
  background-color: #0168a7;
  color: var(--white);
}
.tax-chip.program-type.certificate {
  background-color: rgb(107,196,232, .75);
  color: #003a5d;
}
.program-card-text .program-location {
		display: grid;
		justify-content: left;
		margin-right: 10px;
		width: 100%;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, auto); 
}
.program-location {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto the next line if necessary */
    justify-content: left; /* Distribute space between items */
}

.program-card-text .program-name {
	height: 73px;
	margin-bottom: 0px;
}

.program-location .tax-chip {
	grid-column: span 1; /* Each chip takes one column */
/*     flex: 1 1 30%; /* Flex items to take 30% of the container, adjusting for spacing */ */
    margin-bottom: 10px; /* Adds space between rows */
    text-align: center; /* Center-align the text */
    box-sizing: border-box; /* Ensures padding/margins are included in width */
/* 	min-width: 30%; /* Ensures buttons don't shrink below this width */ */
/* 	max-width: 40%; /* Ensures buttons don't shrink below this width */ */
	margin-right: 10px;
}

.program-card-text .program-location .tax-chip.vincennes {
		background-color: #003A5D;
		color: #fff;
	}
.program-card-text .program-location .tax-chip.jasper {
		background-color: #003A5D;
		color: #fff;
	}
.program-card-text .program-location .tax-chip.gibson {
	background-color: #003A5D;
	color: #fff;
	}
.program-card-text .program-location .tax-chip.atc {
	background-color: #003A5D;
	color: #fff;
	}
.program-card-text .program-location .tax-chip.asl {
	background-color: #003A5D;
	color: #fff;
	}
.program-card-text .program-location .tax-chip.arkansas {
	background-color: #003A5D;
	color: #fff;
	}
.program-card-text .program-location .tax-chip.california {
	background-color: #003A5D;
	color: #fff;
	}
.program-card-text .program-location .tax-chip.florida {
	background-color: #003A5D;
	color: #fff;
	}
.program-card-text .program-location .tax-chip.georgia {
	background-color: #003A5D;
	color: #fff;
	}
.program-card-text .program-location .tax-chip.indiana {
	background-color: #003A5D;
	color: #fff;
	}
.program-card-text .program-location .tax-chip.nevada {
	background-color: #003A5D;
	color: #fff;
	}
.program-card-text .program-location .tax-chip.washington {
	background-color: #003A5D;
	color: #fff;
	}

.degree-type-wrapper,
#wrapper .degree-type-wrapper {
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  height: 100px;
  display: flex;
  flex-flow: row wrap;
}
.degree-type-wrapper .btn-degree-filter,
#wrapper .degree-type-wrapper .btn-degree-filter {
  margin: 0;
  height: 100%;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  min-height: 60px;
  padding: 1rem;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.degree-type-wrapper .btn-degree-filter:not(.current):hover,
#wrapper .degree-type-wrapper .btn-degree-filter:not(.current):hover {
  background-color: var(--primary-alt);
  color: var(--white);
}
.degree-type-wrapper .btn-degree-filter.current,
#wrapper .degree-type-wrapper .btn-degree-filter.current {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  pointer-events: none;
  cursor: default;
}

/* Program Landing Page */
/* CTAs with Icons */
.fast-fact {
  z-index: 2;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 38%;
  padding: 3rem 1rem;
  transition: transform 300ms ease-out;
  text-align: center;
  font-weight: 500;
  font-weight: 700;
}
.big-text {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background-image: url(/_resources/css/images/droplet__yellowleft.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  /* text */
  font-size: 8rem;
}

/* Key Courses */
.course-list-item {
  padding: 1rem 0 0;
  font-weight: 700;
}
.course-list-item:not(:last-child) {
  border-bottom: 2px solid var(--secondary-color);
}

/* Program Landing blue section */
.program-pathways .bg-swoop-middle {
  /* background-image: url(/_resources/css/images/shape_bg_blue_1.svg); */
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.program-pathways .bg-swoop-bottom {
  /* background-image: url(/_resources/css/images/SVG/swoop_bottom_schools-programs.svg); */
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  background-size: 100% auto;
  background-position: bottom left;
  background-repeat: no-repeat;
}

.program-pathways {
  display: block;
  margin-top: 2rem;
  padding-top: 2rem;
  padding-bottom: 0;
}
.program-pathways .program-pathways-content,
.program-pathways .program-pathways-content * {
  z-index: 2;
}

.program-more-content {
  padding-top: 4rem;
}
.program-more-content .section-intro {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.display-logo {
  max-height: 100px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.display-logo img {
  height: 100%;
  width: auto;
}

/* Vertical Icon List */
.icon-list {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
.icon-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2rem;
}
.icon-item-text {
  width: 74%;
}
.droplet-graphic-alt {
  width: 24%;
  height: auto;
  /* background-image: url(/_resources/css/images/droplet__blueleft.svg); */
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.droplet-graphic-alt img {
  width: 75%;
  height: auto;
}

/* news section */

.tax-chip {
  color: var(--white);
  background-color: var(--primary-color);
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  width: 30%;
  font-weight: 600;
}


@media (max-width: 992px) and (min-width: 769px) {
.tax-chip {
  font-size: 0.65rem;
}
.news-list {
  position: relative;
  z-index: 1;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.news-item {
  position: relative;
  width: 32.5%;
  padding-right: 0rem;
  padding-left: 0rem;
  text-decoration: none !important;
}

.news-item p {
  font-weight: 400;
}

.news-item .news-image {
  width: 100%;
  aspect-ratio: 9/5;
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: var(--dark-gray);
  display: flex;
}
.news-item:hover img {
  transform: scale(1.02);
}
.news-item .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
}
.news-card-text {
  padding: 0 0.4rem 1rem 0;
}
.news-card-text h3 {
  margin-bottom: 12px;
}

.news-item.feature-item {
  width: 100%;
}

.news-item.feature-item .news-card-text {
  width: 100%;
}
.news-item.feature-item .news-card-image {
  width: 100%;
}

/* fw grey text box */

.split-image.fw-split-bg-gray .text-bg-gray-news {
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: 10%;
  padding: 1.25rem;
  background-color: var(--extra-light-gray);
  z-index: 2;
  min-height: 320px;
  width: 50%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

.split-image.fw-split-bg-gray .text-bg-gray-news p {
  font-weight: 400;
}

/* news section - end */
.article-content .container {
  max-width: 1100px;
}
.article-content .container p {
  max-width: unset;
}
.news-article {
  margin-top: 2.5rem;
}
.news-article .news-tags {
  margin-bottom: 2rem;
}
.news-article .article-image-wrapper {
  width: 50%;
  aspect-ratio: 5/4;
  margin-left: 0.65rem;
  margin-bottom: 0.65rem;
  float: right;
}
.news-article .article-image-wrapper img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.article-share {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  flex-flow: row nowrap;
  gap: 1.25rem;
}
.article-share a {
  font-size: 1.25rem;
  display: inline;
  text-decoration: none;
  /* padding: 0 0.5rem; */
}

/* RESPONSIVE */
/* XXXL */
@media (min-width: 1825px) {
  .swoop-cta .bg-swoop-bottom {
    display: none;
  }
  .swoop-cta {
    margin-bottom: 4rem;
  }
  .bg-swipe .bg-swoop-bottom,
  .bg-swipe .bg-swoop-top {
    display: none;
  }
}
/* XXL */
@media (min-width: 1600px) {
  .split-image.fw-split-bg-gray {
    margin-left: auto;
    margin-right: auto;
  }
  .programfinder .bg-swoop-top {
    display: none;
  }
}
/* XL */
@media (max-width: 1240px) {
  /* split sections */
  .testimonial-text {
    max-width: 480px;
  }
  .split-section {
    height: auto;
  }
  .split-section .split-image-droplet-left,
  .split-section .split-image-droplet-right {
    width: 38vw;
  }
  .split-section.split-centered .split-image-droplet-right,
  .split-section.split-centered .split-image-droplet-left {
    right: 3rem;
  }
}
/* LG */
@media (max-width: 991px) {
  /* degree-finder */
  .programfinder .degree-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .programfinder .search-container {
    margin-bottom: 2.25rem;
  }
  .programfinder .btn.btn-default {
    padding: 1.5rem 3rem;
    margin-bottom: 0.2rem;
  }
  .programfinder .btn-default:not(:last-child) {
    margin-right: 0;
  }

  /* blue banner */
  .profile-blue-banner .split-image-col {
    margin: -4rem 0 -4rem 6rem;
    padding: 0;
    max-width: 310px;
    aspect-ratio: 3/4;
  }
  /* split sections with droplet */
  .split-section.split-centered .split-image-droplet-right,
  .split-section.split-centered .split-image-droplet-left {
    right: 1rem;
  }
  .split-centered .testimonial-text {
    max-width: 460px;
  }
}
/* MD */
@media (max-width: 767px) {
  /* global elements */
  .hero .hero-heading h1 {
    font-size: 3.5rem;
  }
  .droplet-title {
    margin-left: 3rem;
  }
  .droplet-title::before {
    width: 3rem;
    top: -1.25rem;
    left: -3rem;
  }
  blockquote {
    width: 100%;
  }

  /* swoop cta */
  .swoop-cta .swoop-cta-content {
    padding: 1rem 1rem 6rem 1rem;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
  }
  .swoop-cta .bg-swoop-top {
    background-size: 260% auto;
    background-position: left top;
  }
  .swoop-cta .bg-swoop-bottom {
    background-size: 260% auto;
    background-position: left bottom;
  }
  /* events */
  .events .events-content {
    padding: 0;
  }
  .events .col-md-7 {
    padding: 0;
    margin: 0;
  }

  /* bg graphics large */
  .xl-bg-graphic {
    background-size: cover;
    background-position: -40rem center;
  }
  /* split sections */
  /* fw with droplet image */
  .split-section .split-image-droplet-left,
  .split-section .split-image-droplet-right {
    width: 150vw;
    max-width: 500px;
    height: 150vw;
    max-height: 500px;
  }
  .testimonial-text {
    padding-top: 380px;
    padding-bottom: 3rem;
  }
  /* contained with droplet image */
  .split-section.split-centered {
    margin-top: 4rem;
  }
  .split-section.split-centered .split-image-droplet-right,
  .split-section.split-centered .split-image-droplet-left {
    right: auto;
  }
  .split-section.split-centered .testimonial-text {
    padding-top: 380px;
    padding-bottom: 3rem;
  }
  /* fw splits */
  .fw-split-image {
    margin-top: 1rem;
  }
  .fw-split-image .split-image-col {
    height: 280px;
  }

  .fw-split-blue-banner .split-image-col {
    height: 280px;
    width: 100%;
    margin: 0;
  }
  .fw-split-blue-banner .basic-split-text {
    padding: 4rem 1rem;
  }

  section.testimonial-swipe {
    min-height: 320px;
    margin: 1rem 0;
  }

  .testimonial-swipe .testimonial-text {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  .testimonial-swipe .basic-split-text {
    padding: 0;
    margin-left: 0.5rem;
  }
  .testimonial-swipe .row .split-image-col {
    min-height: unset;
    height: 200px;
    max-height: 50%;
    margin: 0;
    margin-top: 24%;
    margin-bottom: 5%;
  }

  .fw-split-bg-gray,
  .split-bg-gray {
    margin-bottom: 1rem;
  }
  .split-image.fw-split-bg-gray .text-bg-gray,
  .split-image.split-bg-gray .text-bg-gray {
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: -1rem;
    padding: 1.25rem;
    background-color: var(--extra-light-gray);
    z-index: 2;
    min-height: 240px;
    width: calc(100% - 2rem);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
  }
  .split-image.fw-split-bg-gray .split-image-col,
  .split-image.split-bg-gray .split-image-col {
    aspect-ratio: unset;
    z-index: 0;
    position: relative;
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
  }

  .fw-split-yellow-banner .split-image-col {
    height: 280px;
    width: 100%;
    margin: 0;
  }
  .fw-split-yellow-banner .basic-split-text {
    padding: 4rem 1rem;
    min-height: unset;
  }

  /* icon links */
  .icon-link {
    max-width: 350px;
    margin: 0 auto;
  }
  .icon-link img {
    width: 70%;
    margin: 0 auto;
  }
  /* news */
  .news-index {
    margin-top: 2rem;
  }
  .news-item {
    width: 100%;
    border-bottom: 1.5px solid var(--light-gray);
    margin-bottom: 1.5rem;
  }
  .news-item:last-child {
    border-bottom: none;
  }
  .news-item::after {
    display: none;
  }
  .news-item.feature-item .news-card-text {
    padding: 0 1.5rem;
  }
  /* sidenav */
  #sideNav {
    padding-top: 1rem;
    padding-left: 1rem;
    background-image: none;
    min-height: unset;
    background-color: var(--extra-light-gray);
  }
  #sideNav .sidenav-dropdown {
    border-bottom: 1.5px solid var(--primary-color);
  }
  /* main-column */
  .main-column {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: unset;
  }

  /* wide cards */
  .wide-card .card-image {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
  }

  /* blue banner */
  .profile-blue-banner {
    margin-top: 7rem;
    margin-bottom: 2rem;
  }
  .profile-blue-banner .split-image-col {
    margin: -4rem auto 0;
    padding: 0;
    max-width: calc(100% -1rem);
    aspect-ratio: 3/4;
    background-color: transparent;
    overflow: visible;
    background-position: center;
  }
  .profile-blue-banner .basic-split-text {
    text-align: left;
    float: left;
  }
  .profile-btn-wrapper {
    display: flex;
    justify-content: center;
  }
  /* program-finder */
  .programs-filter-grid .btn-filter {
    flex-flow: row nowrap;
    justify-content: start;
    text-align: left;
  }
  .programs-filter-grid .btn-filter svg {
    height: auto;
    max-width: 38px;
    margin-right: 4px;
  }
  /* degree classification links */
  .degree-type-wrapper {
    margin: 0 auto;
    padding: 4px 8px;
    max-width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
  }
  .degree-type-wrapper .btn-degree-filter {
    width: 48%;
    margin: 2px 1px;
    height: auto;
    border-radius: 4px;
    min-height: unset;
    padding: 0.75rem;
  }

  /* CTAs with Large Text */
  .fast-fact {
    max-width: 75%;
  }
  /* News Article */
  .news-article .article-image-wrapper {
    width: 100%;
  }
}
/* SM */
@media (max-width: 480px) {
  /* global elements */
  .hero .hero-heading h1 {
    font-size: 3rem;
  }
  /* degree-finder */
  .programfinder {
    background-color: white;
  }

  /* split sections */
  .split-section .split-image-droplet-left,
  .split-section .split-image-droplet-right {
    max-width: 140vw;
    max-height: 140vw;
  }
  /* contained with droplet image */
  .split-section.split-centered .split-image-droplet-right,
  .split-section.split-centered .split-image-droplet-left {
    left: -45%;
    right: auto;
  }
  .split-section.split-centered .testimonial-text {
    padding-top: 110vw;
    padding-bottom: 3rem;
  }
  .testimonial-text {
    padding-top: 110vw;
  }
  .testimonial-swipe .testimonial-text {
    padding: 1rem;
  }
  /* overlay link */
  .overlay-link {
    width: calc(100% - 1rem);
    margin-bottom: 1rem;
  }
  /* Full Width Grid with Overlays */
  .cta-grid.four-up {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .cta-grid.four-up .overlay-link,
  .cta-grid .overlay-link {
    width: calc(100% - 1rem);
    padding: 2rem 1rem;
  }

  /* faculty */
  .faculty-card {
    margin-left: 1rem;
    width: calc(100% - 1rem);
  }

  /* programs */
  .display-logo {
    max-height: 65px;
  }
}
