@charset "UTF-8";
/* Web Solutions 4.0 Compatible */

html {
	scroll-padding-top: 2.5em; /* Scroll offset for sticky mobile nav */
}

body.slideNav {
	overflow: hidden;
	pointer-events: none;
}







/* HEADER ------------------------------ */
body>header {
	background: #FFF;
	display: contents;
	position: relative;
	z-index: 1;
}

body>header:before {
	background-color: #fff;
	content: '';
	display: block;
	height: 100vh;
	height: 100dvh;
	left: 100vw;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: left 0ms ease 200ms, opacity 200ms ease;
	width: 100vw;
	z-index: 3;
}

body.slideNav>header:before {
	left: 0;
	opacity: .85;
	transition: left 0ms ease 0ms, opacity 200ms ease;
}

body>header .header-wrap {
	background: #fff;
}

#brand {
    align-items: center;
    display: flex;
    gap: 0.5625em;
    height: 6.25em;
	justify-content: center;
}

#brand img {
    aspect-ratio: 1/1;
    display: block;
    height: auto;
    max-width: 4.75em;
	transition: var(--ws-transition);
    width: 100%;
}

#brand span {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.375rem;
    max-width: 9.25rem;
	transition: var(--ws-transition);
}


#navContainer {
	background-color: var(--black);
	bottom: 0;
	left: 100%;
	max-height: 100vh;
	max-height: 100dvh;
	overflow: auto;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: left .2s ease, visibility .2s ease .2s;
	visibility: hidden;
	width: 75%;
	z-index: 3;
	-webkit-overflow-scrolling: touch;
}

body.slideNav #navContainer {
	left: 25%;
	pointer-events: all;
	transition: left .2s ease;
	visibility: visible;
}

#navContainer nav {
	display: inline;
}

#navContainer ul {
	display: block;
	margin: 0;
	padding-left: 0;
	width: 100%;
}

#navContainer li {
	border-top: 1px solid #333;
	display: block;
	position: relative;
	width: 100%;
}

#navContainer li li {
	border: 0;
}

#navContainer :is(a, .toggleNav) {
	color: #fff;
	display: block;
	font-weight: 500;
	line-height: 2.75em;
	padding: 0 1rem;
	text-transform: uppercase;
	width: 100%;
}

#navContainer .toggleNav {
	background: transparent;
	border: 0;
	border-radius: 0;
	text-align: left;
	text-transform: uppercase;
}

#navContainer .toggleNav::before {
	background: url('/images/icons/close.svg') no-repeat left center / contain;
	content: '';
	line-height: 1;
	margin: 0 .5em 0 0;
	padding-right: .65em;
}

#navContainer li.on a {
	color: #FFF;
	background-color: var(--dark-red);
}

#navContainer li.open {
	background-color: #000;
}

#navContainer .menu-item-has-children > div {
	display: grid;
	grid-template-rows: 0fr;
	transition: var(--ws-transition);
}

#navContainer .menu-item-has-children.open > div {
	grid-template-rows: 1fr;
}

#navContainer li>button {
	background: var(--red);
	border-radius: 0;
	display: block;
	height: 2.75em;
	position: absolute;
	right: 0;
	top: 0;
	width: 2.75em;
}

#navContainer ul ul {
	font-size: .8em;
	min-height: 0;
	overflow: hidden;
}

#navContainer ul li.on ul li {
	border-top: 1px solid var(--dark-red);
}

#navContainer ul li.on ul a {
	padding-left: 2rem;
	text-transform: none;
	font-weight: 400;
}

#navContainer ul ul li.on a {
	background-color: var(--red);
}

#navContainer ul ul ul {
	display: none;
}

#navContainer ul ul li.on > ul {
	background: var(--dark-red);
	padding: 0.5rem;
}

#navContainer li>button::before,
#navContainer li>button::after {
	background-color: #fff;
	content: '';
	display: block;
	height: 0.0625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform-origin: center center;
	transition: transform .2s ease;
	width: 50%;
}

#navContainer li>button::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

#navContainer li>button::after,
#navContainer li.open > button:before {
	transform: translate(-50%, -50%) rotate(0deg);
}






/* ANCILLARY ------------------------------ */
#navContainer #ancillary {
	display: flex;
	flex-direction: column;
}

#navContainer #ancillary a {
	border-top: 1px solid #333;
}

#navContainer #ancillary .search {
	border-top: 1px solid #333;
	display: flex;
	order: 4;
	padding: 1rem;
}

#navContainer #ancillary .search input[type="text"] {
	background:#fff;
	border: 0;
	border-radius: 0.375em 0 0 0.375em;
	flex: 1 1 auto;
	width: calc(100% - 7rem);
}

#navContainer #ancillary .search input[type="text"]:focus {
	outline: 2px solid rgba(255,255,255,0.75);
}

#navContainer #ancillary .search button {
	aspect-ratio: 1/1;
	background: var(--red) url(/images/search.svg) no-repeat center;
	border-radius: 0 0.375em 0.375em 0;
	padding: 0;
}

#navContainer #ancillary .search :focus + button {
	outline: 2px solid var(--red);
}






/* MOBILE NAV ------------------------------ */
#mobilenav {
	align-items: center;
	background-color: var(--black);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	display: flex;
	justify-content: center;
	position: sticky;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 1;
}

#mobilenav :is(a, button) {
	color: #FFF;
	flex: 1 1 auto;
	font-weight: 500;
	line-height: 2.25;
	text-transform: uppercase;
}

#mobilenav a {
	border-right: 1px solid rgba(255,255,255,0.5);
}

#mobilenav button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: flex;
	justify-content: center;
	padding: 0;
}

#mobilenav button::after {
  aspect-ratio: 1;
  background: #FFF;
  content: '';
  display: inline-block;
  margin: 0 0 0 .25em;
  mask:  url('/images/icons/bars.svg') no-repeat center / contain;
  height: 1em;
}






/* ALERT ------------------------------ */
#alertApp {
	padding: 1em;
	position: relative;
}

#alertApp .site-alert__inner {
	align-items: center;
	display: flex;
	gap: 1em;
	justify-content: space-between;
}

#alertApp .flex {
	align-items: flex-start;
	flex-direction: column;
}

#alertApp .site-alert__inner button {
	flex-shrink: 0;
}

#alertApp .flex + .site-alert__dismiss,
#alertApp .site-alert__details + .site-alert__dismiss {
    align-self: flex-start;
}






/* MAIN ------------------------------ */

main > .wrap > aside {
	margin: 3em 0 -2em;
}

.photoright {
	margin: 0 0 .75em 1em;
}

.photoleft {
	margin: 0 1em .75em 0;
}

.twoCol, .threeCol, .resCol {
	columns: auto;
	column-width: 13em;
}

.formTable, .formTable table {
	display: block;
	width: 100%;
}

.formTable tbody {
	display: block;
}

.formTable tr {
	display: block;
}

.formTable td {
	display: block;
	padding: 0;
	width: 100%;
}

.formTable :is(input:is([type="text"], [type="password"], [type="tel"], [type="number"], [type="email"], [type="url"]), textarea) {
	margin-bottom: 1em
}

.formTable table td + td {
	padding-left: 0 !important;
}


/* Contact Form - table removed ----- */
.form-flex :where(.half, .third) {
	width: 100%;
}

.form-flex .quarter {
	width: calc(50% - .5em);
}

.pageHeader {
	background-position: top left;
	height: 2.9375em;
}

.wrap, .ws-grid {
	padding: 0;
}






/* HOMEPAGE ------------------------------ */
#hero {
	display: flex;
	flex-direction: column;
}

#hero .text-container {
	aspect-ratio: unset;
	order: 1;
	padding: 3em 2em 1em;
	z-index: 1;
}

#hero .text-container .inner-wrap .heading-2 {
	font-size: var(--heading-3);
}

#hero .rotator-container {
	order: 2;
}

#callouts h2 {
	font-size: var(--heading-3);
}

#callouts .ws-grid-inner {
	display: flex;
	flex-direction: column;
	gap: 2em;
	padding: 0 1em;
}

#counters {
	flex-direction: column;
}

#counters section h3 {
	font-size: var(--heading-3);
}

#counters section p {
	font-size: 1.125em;
}

#welcome {
	display: flex;
	flex-direction: column;
}

#welcome .background-image {
	aspect-ratio: 16/9;
	order: 1;
	position: relative;
	width: 100%;
}

#welcome .background-image:after {
    background-image: linear-gradient(180deg, rgba(31,31,31,0.00) 0%, #1F1F1F 100%);
}

#welcome .wrap {
	padding: 2em 1em;
	order: 2;
}




/* FOOTER ------------------------------ */
body > footer,
body > footer .fatFooter {
	gap: 2em;
}

body > footer .fatFooter,
body > footer > .wrap {
	padding: 0;
}

body > footer .fatFooter :is(.contact) {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2em;
	justify-content: space-between;
	width: 100%;
}

body > footer .fatFooter :is(.contact) .email-signup,
body > footer .fatFooter form,
body > footer .fatFooter form div,
body > footer .fatFooter form input {
	width: 100%;
}

body > footer > .wrap {
	font-size: 0.875em;
}

body > footer .wrap .copyright {
	gap: 0.5em;
}

body > footer .wrap nav {
	flex-wrap: wrap;
}

body>footer .wrap nav a+span:before {
	content: "|";
	margin: 0 0.35em;
}

.interior #enrichment-courses ul {
  --ws-columns: 3;
}


/* 550px */
@media screen and (max-width:34.375em) {
	body > footer {
		gap: 3em;
	}
	body > footer .fatFooter address, 
	body > footer .fatFooter .help-links > *, 
	body > footer .fatFooter .contact > *, 
	body > footer .fatFooter .contact > * form {
		gap: 0.25em;
	}
	body > footer .fatFooter, body > footer .wrap,
	body > footer .fatFooter :is(.contact) {
		flex-direction: column;	
	}
	body > footer .fatFooter :is(.help-links, .contact) {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}
/* 480px */
@media screen and (max-width: 30em) {
	.home :is(#academic-programs, #enrichment-courses) ul, .interior #enrichment-courses ul {
		--ws-columns: 2;
		--ws-gap: 1em;
		row-gap: 1.5em;
	}

}