  /*Homepage CSS */

/* fix learn more button styles */
a.learn-more {
	color: #ffffff;
	background-color: #013c65;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	max-width: max-content;
	margin: 0;
	cursor: pointer;
	font-weight: 400;
	line-height: normal;
	position: relative;
	text-align: center;
	display: inline-block;
	padding: .5rem 1.25rem;
	font-size: .8rem;
	border-radius: 25px;
	text-decoration: none;
	text-transform: uppercase;
	background-image: none;
}

a.learn-more:hover {
	color: #000000;
	background-color: #f6b000;
	background-image: none;
}

/*Alert Banner*/

.homepage-alert-banner{
    background: #333;
    margin: 0;
    border: none; 
}
.homepage-alert-banner.dark-gray{
	background: #333;
}
.homepage-alert-banner.gold{
	background: #f6b000;
}
.homepage-alert-banner.red{
	background: #c34628;
}
.homepage-alert-banner p{
    color: #fff;
}
.homepage-alert-banner .hpAltTitle{
    font-weight: bold !important;
    font-size: 1.4em;
}
.homepage-alert-banner button.close{
    color: #fff;
    opacity: 1 !important;
    font-size: 30px;
    top: 20%;
}

/*Video Banner*/
.homepage-video {
	background-color: #013c65;
}

/*Academic Interests*/

.acadmicInterests {
    background: #013C65;
    padding: 30px 0;
}

.acadmicInterests h2 {
    color: #fff;
}
.acadmicInterests .aIFlex {
    display: flex;
    flex-flow: row wrap;
    row-gap: 60px;
    margin: 30px 0 30px 0;
}
.acadmicInterests .aIFlex li {
    width: 190px;
    flex-grow: 1;
    color: #fff;
    list-style: none;
}
.acadmicInterests .aIFlex li div {
    display: table;
    cursor: pointer;
}
.acadmicInterests img {
    display: table-cell;
    width: 52px;
    height: 52px;
}
.acadmicInterests p {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 700 !important;
    padding-left: 10px;
    width: 132px;
    height: 52px;
    color: #fff;
}
.acadmicInterests .viewAllProg {
    display: inline;
    color: #f6b000;
}
.acadmicInterests .viewAllProg:hover {
    color: #fff;
}

/*Academic Interests with White Background, updated by Taylor Lancaster 11/3/2022*/
body .acadmicInterests {
  background: #ffffff;
  padding: 3rem 0;
}

body .acadmicInterests h3 {
  color: #000000;
}

body .acadmicInterests .aIFlex {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1200px) {
  body .acadmicInterests .aIFlex {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body .acadmicInterests .aIFlex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body .acadmicInterests .aIFlex {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

body .acadmicInterests .aIFlex li {
  width: auto;
  border: 2px solid #013c65;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: transparent;
  transition: all;
  overflow: hidden;
  position: relative;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

body .acadmicInterests .aIFlex li a {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 1rem 1.5rem;
  display: flex;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  body .acadmicInterests .aIFlex li a {
    justify-content: center;
  }
}

body .acadmicInterests .aIFlex li a .category {
  display: flex;
  align-items: center;
}

body .acadmicInterests .aIFlex li a .category p {
  position: relative;
  display: block;
  margin: 0;
  color: #000000;
  width: auto;
  height: auto;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

body .acadmicInterests .aIFlex li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: .5;
  z-index: 0;
  transition: all .2s;
  transform: translateY(100%);
  background-color: #013c65;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}

body .acadmicInterests .aIFlex li:hover {
  background-color: #013c65;
}

body .acadmicInterests .aIFlex li:hover:before {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

body .acadmicInterests .aIFlex li:hover .icon {
  filter: saturate(0) brightness(10);
  -webkit-filter: saturate(0) brightness(10);
}

body .acadmicInterests .aIFlex li:hover a .category p {
  color: #ffffff;
}

body .acadmicInterests a.a\.learn-more\.on-dark {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  cursor: pointer;
  font-weight: 400 !important;
  line-height: normal;
  position: relative;
  text-align: center;
  display: inline-block;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  background-color: #013c65;
  border-color: #222;
  border-radius: 25px;
  color: #ffffff;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  max-width: max-content;
  margin: 0;
  margin-bottom: 1rem;
}

body .acadmicInterests a.a\.learn-more\.on-dark:hover {
  color: #000000;
  background-color: #f6b000;
}
/*End Academic Interests with White Background*/

/*Homepage News Section*/

.newsCentral {
    padding: 40px 0;
	background-color: #013c65;
}
.newsCentral h2 {
    color: #fff;
    padding-bottom: 10px;
}
.newsCentral a {
    color: #fff;
}
.newsCentral a:hover {
    color: #f6b000;
}
.newsCentral .featNews img {
    width: 100%;
}
.newsCentral .featNews p {
    font-size: 24px;
    margin-top: 10px;
    color: #fff;
}
.newsCentral .featNews a:hover p {
    color: #f6b000;
}
.newsCentral .newsList {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.newsCentral .newsList ul {
    list-style: none;
    margin: 0;
}
.newsCentral .newsList ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.newsCentral .newsList ul li:first-of-type {
    padding-top: 0;
}
.newsCentral .newsList ul li:last-of-type {
    border-bottom: none;
}
.newsCentral .newsList ul li a {
    font-size: 20px;
}
.newsCentral .newsList .button {
    margin-top: 20px;
    border-color: #fff;
}
.newsCentral .newsList .button:hover {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}
@media only screen and (max-width: 64em) {
    .newsCentral .newsList {
        border-left: none;
    }
    .newsCentral .featNews p {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
}
/*Homepage Calendar*/

.hpCalendar {
    padding: 40px 0;
	background-color: #013c65;
}
.hpCalendar h2 {
    color: #fff;
    padding-bottom: 10px;
}
.hpCalendar h1, h2, h3, li, p, a {
    color: #fff;
}
.hpCalendar a:hover {
    color: #f6b000;
}
.hpCalendar ul {
    list-style: none;
    margin: 0;
}
.hpCalendar ul li {
    padding: 10px 0 10px 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: url("/_resources/images/icons/calendar/calendar_white.svg") left center no-repeat;
    background-size: 50px;
}
.hpCalendar ul li:first-of-type {
    padding-top: 0;
}
.hpCalendar ul li:last-of-type {
    border-bottom: none;
}
.hpCalendar ul li a {
    font-size: 20px;
}
.hpCalendar .hpCalTitle {
    font-size: 18px;
    font-weight: bold;
}
.hpCalendar .hpCalDate {
    font-size: 16px;
}
.hpCalendar .hpCalTime {
    font-size: 16px;
}
.featEvnt {
    padding: 0;
}
.featEvnt img {
    width: 100%;
}
.featEvnt p {
    color: #fff;
}
.hpCalendar .button {
    margin-top: 20px;
    border-color: #fff;
	color: #fff;
}
.hpCalendar .button:hover {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

@media only screen and (max-width: 40em) {}
@media only screen and (max-width: 64em) {
    .featEvnt {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 20px;
    }
}



/*Homepage Flexspaces*/

.flexSpace {
    background-position: center;
    background-size: cover;
    padding: 10%;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
}
.flexSpace .text {
	padding: 10px;
	background: rgba(0, 0, 0, 0.4);
    width: 500px;
}
.flexSpace .text * {
    text-align: center
}
.flexSpace h2, .flexSpace p {
    color: #fff
}
.flexSpace .button {
    color: #fff;
    border-color: #fff
}
.flexSpace .button:hover {
    border-color: #fff
}
.flexRight {
    flex-direction: row-reverse;
}
.flexLeft {
    flex-direction: row;
}
@media only screen and (max-width:40.063em) {
    .flexSpace {
        padding: 5%;
    }
    .flexSpace .text {
        width: auto;
    }
}

/*Article Hero section, updated by Taylor Lancaster 11/3/2022*/
.articles-hero__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  min-height: 450px;
  overflow: hidden;
}

.articles-hero__inner__primary {
  grid-column: auto / span 1;
}

.articles-hero__inner__primary:last-child {
  grid-column: 1 / -1;
}

.articles-hero__inner__primary__single {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}

.articles-hero__inner__primary__single__meta {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: 1050px;
  margin: 0 auto;
}

.articles-hero__inner__primary__single__meta__title {
  width: 100%;
  height: max-content;
  margin: auto 0 .25rem 0;
  font-size: 2.5rem;
  font-family: "Arvo", sans-serif;
  line-height: 1.2;
  user-select: all;
}

.articles-hero__inner__primary__single__meta__excerpt {
  display: block;
  line-height: 1.5;
  user-select: all;
  pointer-events: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  max-width: 500px;
}

.articles-hero__inner__primary__single__meta__button {
  color: #ffffff;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  max-width: max-content;
  margin: 0;
}

.articles-hero__inner__primary__single__meta__button:hover {
  color: #000000;
  background-color: #f6b000;
}

.articles-hero__inner__primary__single img {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
	.articles-hero__inner__primary__single img {
		object-position: right;
	}
}

.articles-hero__inner__primary__single::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 34, 36, 0.2), rgba(30, 34, 36, 0.7) 47.7%, rgba(30, 34, 36, 0.9));
  z-index: 1;
}

/* Styles for the secondary article when hero is set to 2 */
.articles-hero__inner__secondary {
  grid-column: auto / span 1;
  display: flex;
  flex-direction: column;
  border-left: 3px solid #013C65;
}

.articles-hero__inner__secondary__single {
  display: flex;
  flex: 1;
  width: 100%;
  position: relative;
}

.articles-hero__inner__secondary__single__meta {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 70%;
}

.articles-hero__inner__secondary__single__meta__title {
  width: 100%;
  height: max-content;
  margin: auto 0 .75rem 0;
  font-size: 1.5rem;
  font-family: "Arvo", sans-serif;
  line-height: 1.2;
  user-select: all;
}

.articles-hero__inner__secondary__single__meta__excerpt {
  display: block;
  line-height: 1.5;
  user-select: all;
  pointer-events: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.articles-hero__inner__secondary__single__meta__button {
  color: #ffffff;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  max-width: max-content;
  margin: 0;
  font-size: .9rem;
  padding: .5rem .75rem;
}

.articles-hero__inner__secondary__single__meta__button:hover {
  color: #000000;
  background-color: #f6b000;
}

.articles-hero__inner__secondary__single img {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 100%;
}

.articles-hero__inner__secondary__single::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.articles-hero__inner__secondary__single:first-child:last-child {
  height: 100%;
}

.articles-hero__inner__secondary__single:first-child:last-child .articles-hero__inner__secondary__single__meta__title {
  margin-bottom: .75rem;
}

.articles-hero__inner__secondary__single:first-child:last-child .articles-hero__inner__secondary__single__meta__excerpt {
  -webkit-line-clamp: 3;
}

.articles-hero__inner__secondary__single:nth-child(2) {
  border-top: 3px solid #013C65;
}

@media (max-width: 1200px) {
  .articles-hero__inner .articles-hero__inner__primary__single__meta {
    width: auto;
    max-width: 95%;
    margin: unset;
  }
  .articles-hero__inner .articles-hero__inner__primary,
  .articles-hero__inner .articles-hero__inner__secondary {
    grid-column: 1 / -1;
  }
  .articles-hero__inner .articles-hero__inner__primary {
    min-height: 350px;
  }
  .articles-hero__inner .articles-hero__inner__secondary {
    flex-direction: row;
    border-left: none;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single {
    border-top: 3px solid #013C65;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single__meta__title {
    line-height: 1.5;
    font-size: 1rem;
    padding-top: 2rem;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single__meta__excerpt {
    display: none;
  }
}

@media (max-width: 1200px) and (min-width: 640px) {
  .articles-hero__inner .articles-hero__inner__secondary__single:last-child {
    border-left: 3px solid #013C65;
  }
}

@media (max-width: 640px) {
  .articles-hero__inner .articles-hero__inner__primary__single__meta {
    max-width: 95%;
  }
  .articles-hero__inner .articles-hero__inner__primary__single__meta__title {
    font-size: 1.5rem;
    margin-bottom: .25rem;
  }
  .articles-hero__inner .articles-hero__inner__primary__single__meta__button {
    font-size: .9rem;
    padding: .5rem .75rem;
  }
  .articles-hero__inner .articles-hero__inner__secondary {
    flex-direction: column;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single {
    border-left: none;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single__meta {
    max-width: 95%;
  }
}
/*End Article Hero section*/

/*Proof Points section, updated by Taylor Lancaster 11/3/2022*/
.proof-points {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 3rem 0;
}

.proof-points:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 60, 101, 0.7);
  backdrop-filter: blur(1px);
  z-index: 0;
}

.proof-points__inner {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
}

.proof-points__inner__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

@media (max-width: 1200px) {
  .proof-points__inner__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .proof-points__inner__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    max-width: 75%;
    margin: 0 auto;
  }
}

.proof-points__inner__grid__single {
  grid-column: auto / span 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.proof-points__inner__grid__single__icon {
  max-height: 35px;
  margin-bottom: 1rem;
}

.proof-points__inner__grid__single__number {
  font-family: "Arvo", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: .75rem;
}

.proof-points__inner__grid__single__number__value {
  font-size: 3rem;
  margin: 0 .25rem;
  line-height: 1;
}

.proof-points__inner__grid__single__number__character {
  font-size: 1rem;
  margin: 0;
  margin-top: auto;
}

.proof-points__inner__grid__single__title {
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
  font-family: 'Arvo';
  font-size: 1.25rem;
  font-weight: 600 !important;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.proof-points__inner__grid__single__extra {
  text-align: center;
  line-height: 1.4;
  font-family: 'Open Sans';
  font-size: .75rem;
  margin-bottom: 0;
}
/*End Proof Points section*/

/* Admissions Buttons Section start */
.admissions {
  max-height: 350px;
  overflow: hidden;
}

.admissions__inner {
  display: flex;
  width: 100%;
}

.admissions__inner__single {
  background-position: center;
  height: 350px;
  display: flex;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

.admissions__inner__single:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(1, 60, 101, 0.6);
}

.admissions__inner__single__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.admissions__inner__single__content__label {
  font-family: "Arvo", sans-serif;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0;
}

.admissions__inner__single__content__cta {
  display: flex;
  align-items: center;
  opacity: 0;
  font-size: 0;
  margin: 0;
  transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  padding-bottom: .2rem;
  border-bottom: 1px solid #ffffff;
  text-transform: uppercase;
}

.admissions__inner__single__content__cta img {
  width: 0;
  transition: all .25s ease-in-out;
  margin-left: 0.5rem;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
}

.admissions__inner__single:hover {
  flex: 1.25;
}

.admissions__inner__single:hover .admissions__inner__single__content__cta {
  opacity: 1;
  font-size: 1rem;
}

.admissions__inner__single:hover .admissions__inner__single__content__cta img {
  width: 20px;
}

@media (max-width: 1024px) {
  .admissions {
    max-height: unset;
  }
  .admissions .admissions__inner {
    flex-direction: column;
  }
  .admissions .admissions__inner__single {
    height: auto;
    min-height: 100px;
    padding: 3rem 0;
  }
  .admissions .admissions__inner__single__content__cta {
    opacity: 1;
    font-size: 1rem;
  }
  .admissions .admissions__inner__single__content__cta img {
    width: 20px;
  }
}
/* End Admissions Buttons Section */

/* Stories Section start */
.site-nav, .page-title {
  display: none;
}

.content .wide-row:first-of-type {
  padding: 2rem 0 3rem 0;
}

h1 {
  border-bottom: 3px solid #f6b000;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

h1 strong {
  font-weight: 600px !important;
}

.stats {
  background-color: #013c65;
  padding: 3rem 0;
}

.stats h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.stats h2 span {
  display: block;
}

.stats p {
  color: #ffffff;
  margin-bottom: 0;
}

.stats .stat {
  display: flex;
  align-items: center;
  padding: .5rem 1rem;
  border: 1px solid #ffffff;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.stats .stat:not(:last-child) {
  margin-bottom: 1rem;
}

.stats .stat p {
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
}

.stats .stat p:first-child {
  color: #f6b000;
  font-size: 2rem;
  margin-right: 1rem;
}

.stats .stat p:first-child span {
  font-size: 1rem;
}

.grad {
  padding: 3rem 0;
}

.grad__title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
}

.grad__title img {
  max-height: 75px;
}

.grad__title h2 {
  margin: 0 1rem;
  display: block;
  font-weight: 600 !important;
}

.grad__title h2 span {
  display: block;
}

.grad p {
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
}

.commitment {
  position: relative;
  background-color: #013c65;
  padding: 3rem 0;
}

.commitment .image-container {
  display: block;
  min-height: 100%;
  min-width: 49%;
  position: absolute;
  top: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.commitment .row div:nth-of-type(2) {
  float: right;
}

.commitment .row div:nth-of-type(2) h4 {
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.commitment .row div:nth-of-type(2) ul li {
  color: #ffffff;
  line-height: 1.5;
}

.commitment .row div:nth-of-type(2) ul li:not(:last-child) {
  margin-bottom: .75rem;
}

/* Stories Section Start */

.stories {
  padding: 3rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .stories {
    padding: 3rem 1rem;
  }
}

.stories__single {
  display: flex;
  gap: 0 .5rem;
  border: 1px solid #013c65;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  overflow: hidden;
}

.stories__single:not(:last-child) {
  margin-bottom: 2rem;
}

.stories__single__image {
  flex: 1;
}

.stories__single__image a {
  display: flex;
  height: 100%;
  position: relative;
}

.stories__single__image a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.stories__single__copy {
  flex: 2;
  padding: 1.5rem;
}

.stories__single__copy p {
  color: #000000;
}

.stories__single__copy button,
.stories__single__copy a.button {
  color: #ffffff;
  background-color: #013c65;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  max-width: max-content;
  margin: 0;
  cursor: pointer;
  font-weight: 400;
  line-height: normal;
  position: relative;
  text-align: center;
  display: inline-block;
  padding: .5rem 1.25rem;
  font-size: .8rem;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
}

.stories__single__copy button:hover {
  color: #000000;
  background-color: #f6b000;
}

.stories__single__copy h5 {
  font-weight: 600 !important;
  margin-bottom: 1rem;
}

.stories__single:nth-child(even) .stories__single__image {
  order: 1;
}

@media (max-width: 500px) {
  .stories__single {
    flex-direction: column;
  }
  .stories__single:nth-child(even) .stories__single__image {
    order: unset;
  }
  .stories__single__image {
    overflow: hidden;
  }
  .stories__single__image a {
    height: 200px;
  }
}

/* End Stories Section */

/* Fix the display for the featured event */
.hpCalendar .medium-12 .medium-6 h2, .hpCalendar .medium-12 .medium-6 .row, .hpCalendar .medium-12 .medium-6 .intro-text ~ * {
	display: none;
}

.hpCalendar .medium-12 .medium-6 .intro-text {
	text-align: left !important;
	font-size: 1rem;
}

/* Events Redesign Styles */
.hp-events {
  padding: 3rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .hp-events {
    padding: 3rem 1rem;
  }
}

.hp-events__button {
  color: #ffffff;
  background-color: #013c65;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  max-width: max-content;
  margin: 0;
  cursor: pointer;
  font-weight: 400;
  line-height: normal;
  position: relative;
  text-align: center;
  display: inline-block;
  padding: .5rem 1.25rem;
  font-size: .8rem;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
}

.hp-events__button:hover {
  color: #000000;
  background-color: #f6b000;
}

.hp-events__title {
  color: #000000;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hp-events__featured {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .hp-events__featured {
    flex-direction: column;
    gap: 1rem;
  }
}

.hp-events__featured p {
  color: #222222;
}

.hp-events__featured__image {
  flex: 1;
}

@media (max-width: 640px) {
  .hp-events__featured__image {
    max-height: 250px;
    display: flex;
    background: #eeeeee;
  }
  .hp-events__featured__image img {
    object-fit: contain;
  }
}

.hp-events__featured__copy {
  flex: 3;
}

.hp-events__featured__copy a:not(.hp-events__featured__copy__button){
	color: #0774BF;
}

a.hp-events__featured__copy__title:not(.hp-events__featured__copy__button) {
	color: #000000;
}

.hp-events__featured__copy a:hover {
	color: #000000;
}

.hp-events__featured__copy *:not(a) {
	color: #000000;
}

.hp-events__featured__copy__title {
  display: block;
  color: #000000;
  font-size: 1.5rem;
  font-family: "Arvo", sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: .3s color ease-in-out;
  -webkit-transition: .3s color ease-in-out;
  -moz-transition: .3s color ease-in-out;
  -ms-transition: .3s color ease-in-out;
  -o-transition: .3s color ease-in-out;
}

.hp-events__featured__copy__title:hover {
  color: #013c65;
}

.hp-events__featured__copy__meta {
  display: block;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.hp-events__featured__copy__button {
  color: #ffffff;
  background-color: #013c65;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  max-width: max-content;
  margin: 0;
  cursor: pointer;
  font-weight: 400;
  line-height: normal;
  position: relative;
  text-align: center;
  display: inline-block;
  padding: .5rem 1.25rem;
  font-size: .8rem;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
}

.hp-events__featured__copy__button:hover {
  color: #000000;
  background-color: #f6b000;
}

.hp-events__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 769px) {
  .hp-events__secondary {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

@media (max-width: 768px) {
  .hp-events__secondary {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.hp-events__secondary__single {
  border: 1px solid #000000;
  border-radius: 25px;
  padding: 1rem 2rem;
}

.hp-events__secondary__single__title {
  color: #000000;
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 500 !important;
  transition: color .3s ease-in-out;
  -webkit-transition: color .3s ease-in-out;
  -moz-transition: color .3s ease-in-out;
  -ms-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
}

.hp-events__secondary__single__title:hover {
  color: #013c65;
}

.hp-events__secondary__single__meta {
  display: block;
  margin-bottom: 1rem;
}

.hp-events__secondary__single__button {
  color: #ffffff;
  background-color: #013c65;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  max-width: max-content;
  margin: 0;
  cursor: pointer;
  font-weight: 400;
  line-height: normal;
  position: relative;
  text-align: center;
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: .8rem;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
}

.hp-events__secondary__single__button:hover {
  color: #000000;
  background-color: #f6b000;
}
/* End Events Redesign Styles */

.homepage-alert-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5) !important;
}

.homepage-alert-banner > .row {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  color: #000000;
}

@media (max-width: 640px) {
  .homepage-alert-banner > .row {
    max-width: 75%;
  }
}

.homepage-alert-banner > .row .columns {
  padding: 1rem 2rem;
}

.homepage-alert-banner > .row .columns > * {
  color: #000000;
}

.homepage-alert-banner > .row .columns a {
	color: #000000 !important;
	text-decoration: underline;
}

.homepage-alert-banner > .row .columns .close {
  color: #000000;
  top: 1%;
  margin: 0;
}

span.hp-events__featured__copy__meta ~ * {
	display: none;
}

span.hp-events__featured__copy__meta ~ p:first-of-type, span.hp-events__featured__copy__meta ~ a.hp-events__featured__copy__button {
	display: block !important;
}

/* Homepage adjustments */
.homepage-video .medium-offset-1 {
  margin-left: 0 !important;
}

@media (max-width: 768px) {
  .homepage-video .medium-offset-1 {
    margin: 0 auto !important;
  }
}

.affordability {
  padding: 3rem;
}

.affordability h2 {
  color: #013c65;
  font-weight: 600 !important;
  margin-top: 0;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 3px solid #f6b000;
}

.affordability h3 {
  color: #013c65;
}

.affordability p {
  color: #000000;
}

.affordability .full {
  width: 100%;
}

.affordability .row:not(:last-child) {
  margin-bottom: 1rem;
}

.affordability .panel p {
  color: #ffffff;
  font-weight: 500 !important;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.affordability .panel p:first-child {
  font-family: 'Arvo';
  font-size: 3rem;
  margin-bottom: 0;
  line-height: 1.3;
}

/* Swiper stlyes */
.swiper {
  width: 100%;
  height: 375px;
  padding-right: 180px;
}

.swiper-slide {
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 !important;
  opacity: 1;
  transition: opacity .4s ease-in-out;
}

.swiper-slide-next {
  opacity: .2;
}

.swiper-slide__image-container {
  width: 55%;
  position: relative;
  height: 100%;
}

.swiper-slide__content {
  width: 45%;
  height: 100%;
  padding: 3rem;
}

.swiper-slide__content h3 {
  color: #013c65;
  font-weight: 600 !important;
  margin-bottom: .75rem;
  line-height: 1.25;
  font-size: 1.75rem;
}

.swiper-slide__content p {
  color: #000000;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-buttons {
  position: absolute;
  display: block;
  bottom: 1rem;
  right: 180px;
  display: flex;
  gap: .25rem;
}

.swiper-buttons .swiper-button-next,
.swiper-buttons .swiper-button-prev {
  position: unset;
  top: unset;
  left: unset;
  right: unset;
  margin: 0;
  width: 35px;
  height: 35px;
  background: #013c65;
  border-radius: 0;
  padding: .5rem;
}

.swiper-buttons .swiper-button-next:after,
.swiper-buttons .swiper-button-prev:after {
  display: none;
}

.swiper-buttons .swiper-button-next span,
.swiper-buttons .swiper-button-prev span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

.swiper-buttons .swiper-button-next svg,
.swiper-buttons .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: unset;
  transform-origin: unset;
  font-size: 1rem;
  display: block;
  z-index: 5;
}

.swiper-buttons .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper:before {
  content: '';
  display: block;
  background: #f6b000;
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 130px;
  z-index: 2;
}

.swiper-pagination-bullet:last-child {
  display: none;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: absolute;
  top: 2rem;
  left: calc(55% - 60px);
  z-index: 6;
  width: unset;
  height: max-content;
}

.swiper-pagination-bullet-active {
  background: #013c65;
}

.swiper .swiper-buttons button svg path {
  fill: #ffffff !important;
  transition: fill .4s ease-in-out;
}

.swiper .swiper-buttons button:hover svg path {
  fill: #f6b000 !important;
}

@media (max-width: 1500px) {
  .swiper {
    height: 500px;
  }
}

@media (max-width: 1200px) {
  .swiper {
    height: 550px;
  }
}

@media (max-width: 1080px) {
  .swiper {
    padding-right: 0;
  }
  .swiper-buttons {
    right: 0;
  }
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 58%;
  }
  .swiper:before {
    display: none;
  }
}

@media (max-width: 850px) {
  .swiper-slide {
    flex-direction: column;
    gap: 0;
  }
  .swiper-slide__image-container {
    height: 200px;
    width: 100%;
  }
  .swiper-slide__content {
    height: unset;
    width: 100%;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .swiper {
    height: 600px;
  }
  .swiper-buttons {
    right: unset;
    left: 2rem;
  }
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    right: unset;
    left: 2rem;
    top: 215px;
  }
}
