/*Homepage CSS */


/*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 .columns {}
.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;
}


/*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;
    }
}