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

html {
    scroll-padding-top: 8.375em;
}



/* HEADER ------------------------------*/
body>header {
    background: #FFF;
    position: sticky;
    top: 0;
	transition: var(--ws-transition);
    z-index: 2;
}

body.scroll>header {
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.125);
}

body.management>header {
    top: 35px;
}

body>header .header-wrap {
    display: flex;
    justify-content: space-between;
}

#brand {
    align-items: center;
    display: flex;
    gap: 0.5625em;
    height: 6.25em;
    padding-left: 1.1875em;
}

#brand:is(:hover, :focus-visible) {
    filter: grayscale(1);
}

#brand img {
    aspect-ratio: 1/1;
	border-radius: 50%;
    display: block;
    height: auto;
    max-width: 7.75em;
    transform: translateY(1.125em);
	transition: var(--ws-transition);
    width: 100%;
}

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

#brand:is(:hover, :focus-visible) span {
	color: #666;
}

body>header #navContainer {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

nav ul {
    margin: 0;
}

#mainnav {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	order: 2;
	overflow: visible;
	padding-right: 0.375em;
}

#mainnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

#mainnav li {
    display: inline-block;
    position: relative;
}

#mainnav a {
    color: #000;
    display: inline-block;
    line-height: 1;
    padding: 1em;
    text-decoration: none;
}

#mainnav>ul>li {
	align-items: center;
	display: inline-flex;
	margin-left: 1px;
}

#mainnav>ul>li>a {
	font-size: 1.1875em;
	font-weight: 500;
	text-transform: uppercase;
	padding-right: 2em;
}

#mainnav>ul>li:hover>a {
    background: var(--lightest-grey);
    color: #000;
}

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

#mainnav>ul>li.on:is(:hover, :focus-visible)>a {
    background: var(--dark-red);
}

/* Accessible dropdowns */
#mainnav>ul>li>button {
    align-items: center;
    background: none;
    border: 0;
    bottom: 0;
    display: flex;
    height: 1.5rem;
    justify-content: center;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 0.75em;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
}

#mainnav>ul>li>button:before {
    background: #aaa;
    content: "";
	display: block;
    height: 1em;
    mask-image: url(/images/icons/chevron-down.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    pointer-events: none;
	mask-size: 100% 100%;
    width: 0.625rem;
	transition: var(--ws-transition);
	position: absolute;
}

#mainnav>ul>li>button:focus:before {
	background:var(--red);
}

#mainnav>ul>li:is(:hover, :focus-visible)>button:before {
	background:var(--red);
}

#mainnav>ul>li.on>button:before {
	background:#fff;
}

#mainnav>ul>li.on:is(:hover, :focus-visible)>button:before {
	background:#fff;
}


/* Drop-down menu */
#mainnav li>div {
    background: var(--lightest-grey);
    left: 0;
    opacity: 0;
    padding: 1em 0;
    position: absolute;
    top: -200vh;
    visibility: hidden;
    width: 250px;
}

/* fade out */
#mainnav li:not(.expand)>div {

    transition:
        opacity .2s ease-out 0.25s,
        visibility .2s ease-out 0.25s,
        top 0s linear 0.7s;
}

#mainnav li:hover>div,
#mainnav>ul>li.tapped>div,
#mainnav>ul>li>a:focus+div,
#mainnav>ul>li.expand>div {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/* fade in */
#mainnav>ul>li:is(:hover, .expand)>div {

    transition:
        opacity .2s ease-in .3s,
        visibility .2s ease-in 0s,
        top 0s linear .3s;
}

#mainnav>ul>li:last-child>div {
	left: auto;
    right: 0;
}

#mainnav li ul li {
    display: block;
    width: 100%;
}

#mainnav ul li ul li a {
    background: none;
    color: #000;
}

#mainnav li ul li a {
    display: block;
    font-size: 1em;
    line-height: 1.1em;
    padding: .4em 1.125em;
    text-align: left;
    width: 100%;
}

#mainnav li ul li a:is(:hover, :focus) {
    background: #000;
    color: #fff;
}

#mainnav li ul ul {
    display: none;
}




/* ANCILLARY ----------------------------- */
#ancillary {
	font-size: 0.875em;
	display: flex;
	gap: 1px;
    order: 1;
}

#ancillary form {
	display: flex;
}

#ancillary input[type=text] {
	background-color: var(--red);
	border: 0;
	color: #fff;
	height: 2.2857em;
	padding: 0 1em;
}

#ancillary input[type=text]:focus {
	background-color: var(--dark-red);
}

#ancillary ::-webkit-input-placeholder {color: #fff;opacity: 1;}
#ancillary :-moz-placeholder {color: #fff;opacity: 1;}
#ancillary ::-moz-placeholder {color: #fff;opacity: 1;}
#ancillary :-ms-input-placeholder {color: #fff;opacity: 1;}
#ancillary ::placeholder {color: #fff;opacity: 1;}

#ancillary form button {
	background: var(--red) url(/images/search.svg) no-repeat center;
	border: 0;
	border-radius: 0;
	font-size: 1em;
	padding: 0;
	pointer-events: none;
	width: 2.2857em;
	aspect-ratio: 1/1;
}

#ancillary :not(:placeholder-shown) + button {
	pointer-events: all;
}

#ancillary :not(:placeholder-shown) + button:is(:hover, :focus-visible) {
	background-color: var(--dark-red);
}

#ancillary a {
	align-items: center;
	color:#fff;
	display: inline-flex;
	font-weight: 500;
	gap: 0.25em;
	padding: 0 1em;
}

#ancillary a:not(.donate) {
	background: var(--red);
}

#ancillary a.account:before,
#ancillary a.logout:before,
#ancillary a.cart:before {
	content: "";
	display: block;
	height: 1em;
	width: 1em;
}

#ancillary a.account:before {
	background: url(/images/student.svg) no-repeat center;
}

#ancillary a.logout:before {
	background: url(/images/lock.svg) no-repeat center;
}

#ancillary a.cart:before {
    background: url(/images/cart.svg) no-repeat center;
}

#ancillary a.donate {
	background: var(--light-red);
	text-transform: uppercase;
}

#ancillary a:is(:hover, :focus-visible) {
	background-color: var(--dark-red);
}

/* mini-cart */
#ancillary .small-cart {
    display: inline-block;
}

#ancillary #cart-popover {
    background: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.95);
    display: block;
    height: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    transition: ease all 200ms;
    width: 20rem;
    z-index: -1;
}

#ancillary .small-cart.on #cart-popover,
#ancillary .small-cart:hover #cart-popover {
    opacity: 1;
    pointer-events: all;
    z-index: 10;
}

#ancillary #cart-popover:before {
    border-color: transparent transparent #FFF transparent;
    border-style: solid;
    border-width: 0 10px 8px 10px;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    right: 3rem;
    top: -0.5rem;
    width: 0;
}

#ancillary #cart-popover .no-items {
    background: #FFF;
    color: #000;
    font-size: 1em;
    padding: 1em;
    text-align: center;
}

#ancillary #cart-popover .no-items .button {
    color: #FFF;
    display: block;
    margin-top: 0.75rem;
    text-align: center;
}

#ancillary #cart-popover .products {
    max-height: 21.5em;
    overflow: auto;
    padding: 0.25em 1em;
}

#ancillary #cart-popover .products>p {
    font-size: 1rem;
    text-align: center;
}

#ancillary #cart-popover .product {
    display: block;
    height: auto;
    line-height: 1rem;
    overflow: auto;
    padding: 1.25em 1em;
    position: relative;
    text-align: left;
    text-transform: inherit;
}

#ancillary #cart-popover .product+.product {
    border-top: 1px dashed #D1D1D1;
}

#ancillary #cart-popover .product-image {
    -webkit-transition: ease all 200ms;
    float: left;
    position: relative;
    transition: ease all 200ms;
    width: 5em;
}

#ancillary #cart-popover .product-image img {
    display: block;
	height: auto;
    max-width: 100%;
}

#ancillary #cart-popover .product-details {
    float: right;
    overflow: auto;
	width: calc(100% - 6em);
}

#ancillary #cart-popover .product-name {
    color: #8A1538;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 0.25em;
    white-space: initial;
}

#ancillary #cart-popover .price,
#ancillary #cart-popover .quantity {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5em;
}

#ancillary #cart-popover .product:hover .product-name {
    color: #007DB5;
}

#ancillary #cart-popover .cart-bottom {
    background: #032839;
    color: #fff;
    font-family: "Gotham A", "Gotham B", sans-serif;
    padding: 1rem 1rem 2rem;
    text-align: center;
    text-transform: capitalize;
}

#ancillary #cart-popover .cart-bottom .cart-total {
    font-size: 1rem;
    margin: 0 0 1em;
}

#ancillary #cart-popover .cart-bottom .checkout .button {
    color: #FFF;
    font-size: 1rem;
    height: auto;
    line-height: 1em;
    padding: 0.7em 2em;
    text-transform: capitalize;
}

#mobilenav,
.toggleNav {
    display: none;
    visibility: hidden;
}
.wrap {
    margin-inline: auto;
    max-width: var(--ws-max-content-width);
    padding-inline: var(--ws-gap);
    width: 100%;
}

.ws-grid,
.ws-grid-inner {
    display: grid;
    gap: var(--ws-gap);
	--ws-column-count: 9;
}

.ws-grid {
    grid-template-columns: minmax(0, 1fr) [wrap-start] repeat(var(--ws-column-count), minmax(0, calc(((var(--ws-max-content-width) - ((var(--ws-column-count) - 1) * var(--ws-gap))) / var(--ws-column-count))))) [wrap-end] minmax(0, 1fr);
}

.ws-grid-inner {
    grid-template-columns: subgrid;
}

.pageHeader {
    height: 4.375em;
}










/* ALERT ------------------------------ */
#alertApp {
    padding: 1em 9em;
    position: sticky;
	text-align: center;
    top: var(--header-height);
    z-index: 1;
}

.management #alertApp {
	top: calc(35px + var(--header-height));
}

#alertApp .site-alert__text {
	font-size: 1.125em;
}

#alertApp .site-alert__dismiss {
    position: absolute;
    right: 0.5625rem;
    top: 0.5625rem;
    width: 2.5rem;
}

#alertApp .flex + .site-alert__dismiss,
#alertApp .site-alert__details + .site-alert__dismiss {
    top: 1rem;
}

#alertApp .site-alert__link:is(:hover, :focus-visible),
#alertApp .site-alert__dismiss:is(:hover, :focus-visible),
#alertApp .site-alert__toggle:is(:hover, :focus-visible) {
	background: rgba(0,0,0,0.125)
}








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

main>div.wrap>#content {
	grid-column: 4 / wrap-end;
	grid-row: 1;
	min-height: 600px;
    padding: 0 0 0 2.125em;
	position: relative;
}

body.fullWidth main>div>#content {
	grid-column: 3 / -3;
	padding: 0;
}

main>div.wrap>aside {
	grid-column: wrap-start / 4;
	grid-row: 1;
	min-width: 12.5em;
	padding: 0 0.3125em;
}

.content > form th,
.content > form td,
.content > :is(p, ul, ol):not(.intro),
.content .highlight > :is(p, ul, ol),
:is(#ContactForm, #emailSignup, #EditorForm, form) .form-flex div:not(.regular-text) {
    font-size: 1.25rem;
}
#advancedSearch2 .form-flex div:not(.regular-text),
:is(#ContactForm, #emailSignup) .form-flex .form-error {
    font-size: 1rem;
}
.content figcaption {
    font-size: 1.125em;
}

.photoright {
    margin: 0 0 3em 4em;
}

.photoleft {
    margin: 0 4em 3em 0;
}

.wsManagementLogin td:first-child {
    text-align: right;
    width: 40%;
}

:is(button, .button, input:is([type="button"], [type="submit"], [type="reset"])):is(:hover, :focus) {
    background-color: var(--dark-red);
	box-shadow: none;
    color: #FFF;
}

a:is(:hover, :focus),
a:is(:hover, :focus) * {
    color: var(--dark-red);
}
.content p a:not(.button):is(:hover, :focus-visible) {
	text-decoration-color: var(--red);
	text-underline-offset: 2px;
}

#popover .close:is(:hover, :focus) {
    opacity: 0.5;
}

.shareIcons a:is(:hover, :focus) {
    background-color: var(--link-color-hover);
}

.twoCol,
.threeCol,
.resCol {
}

.twoCol {
    columns: 2;
}

.threeCol {
    columns: 3;
}

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

.formTable td {
    width: 50%;
}

.formTable td {
    padding: 0 0 .5em .5em;
}

.formTable td:first-child {
    padding: 0 .5em .5em 0;
}

.formTable td[colspan="2"] {
    padding-right: 0;
}

.formTable.formLoose,
.formTable.formLoose td {
    width: auto;
}

/* Contact Form - table removed ----- */
.form-flex .half {
    width: calc(50% - .5em);
}

.form-flex .third {
    width: calc(33.33% - .5em);
}

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










/* HOMEPAGE ------------------------------ */

/* Hero */
#hero .rotator-container {
    grid-column: 1 / span 7;
    margin-right: -1em;
}

#hero .text-container {
    align-items: center;
    grid-column: 8 / span 4;
    width: 100%;
}
#hero .text-container .inner-wrap .button:is(:hover, :focus-visible) {
	background: var(--black);
	color: #fff;
}

/* Callouts */
#callouts .ws-grid {
	padding: 0;
}

#callouts :is(h2, ul) {
    grid-column: 1/-1;
}

#callouts li {
    grid-column: span 3;
}

#callouts li:first-child {
    grid-column: wrap-start / span 3;
}

#callouts li a:is(:hover, :focus-visible):before {
	border-color: var(--black);
	inset: 0;
}

#callouts li a:is(:hover, :focus-visible) .button {
	background: var(--red);
	bottom: -1.25rem;
	color:#fff;
}

#callouts li a:is(:hover, :focus-visible) img {
	mix-blend-mode: luminosity;
	opacity: 0.25;
}



/* Welcome Message */
#welcome {
    padding: 0 1em;
}

#welcome .text-container {
    max-width: 35.0625em;
    padding: clamp(3rem, 1.886rem + 5.57vw, 6.063rem) 0;
    position: relative;
    z-index: 1;
}

#welcome .background-image {
    height: 100%;
	position: absolute;
    right: 0;
    top: 0;
    width: calc(50% + 8.125em);
}

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

/* Enrichment */
.interior .content #enrichment-courses ul {
  --ws-columns: 3;
  --ws-gap:2em;
  row-gap: 2em;
 }

.interior .content #enrichment-courses li a {
  font-size: 1.125rem;
}

.interior .content #enrichment-courses .image {
  margin-bottom: 1em;
}

.button.right {position: absolute; right: 0; top: 0;}
/* FOOTER ------------------------------ */
body>footer {
	gap: 6em;
}

body>footer .fatFooter address {
    max-width: 11.125em;
}

body>footer .heading {
    font-size: 1.125em;
}

body>footer .fatFooter .social a:is(:hover, :focus-visible) {
	background: var(--black);
}

body>footer>.wrap a.on,
body>footer>.wrap a:is(:hover, :focus-visible) {
    color: var(--red);
	text-decoration-color: var(--red);
}

body>footer .wrap nav span:before {
    content: "•";
	margin: 0 0.5em;
}






/* ANIMATIONS ------------------------------ */

@media screen and (prefers-reduced-motion: no-preference) {

	.delay-1 {
		transition-delay: 0.125s;
	}
	.delay-2 {
		transition-delay: 0.25s;
	}
	.delay-3 {
		transition-delay: 0.5s;
	}
	
}






/* MIN: 1550px */
@media screen and (min-width: 96.875em) {
	/* :root {--ws-max-content-width: calc(84em + 2 * var(--ws-gap));} */
	
	body>header,
	body>main,
	body>footer {
		font-size: 1.1em;
	}
}






/* MAX: 1024px */
@media screen and (max-width: 64em) {
	#brand {
		padding-left: 1em;
	}
	#brand img {
		max-width: 4.75em;
		transform: none;
	}
	#brand span {
		font-size: 1em;
		line-height: 1.25em;
	}
	#ancillary input[type="text"] {
		max-width: 8.75em;
	}
	#mainnav > ul > li > a {
		font-size: 0.875em;
	}
	#mainnav > ul > li > button {
		right: 0.35em;
	}
	#alertApp {
    	padding: 1em 3.5em;
	}
	.interior main > .wrap {
		grid-template-columns: 12.5em 1fr;
	}
	main > div.wrap > aside {
		grid-column: 1 / span 1;
		padding: 0;
	}
	main > div.wrap > #content {
		grid-column: 2 / span 1;
		padding-left: 3vw;
	}
	#hero .text-container::after {
		height: calc(100% + 1.1875em);
	}
	#hero .text-container .inner-wrap .heading-2 {
		font-size: var(--heading-3);
	}
	#hero .text-container .inner-wrap .button {
		font-size: 1em;
	}
	#callouts h2 {
		font-size: var(--heading-2);
	}
	#callouts .text-container {
		font-size: 0.875em;
	}
	#counters section {
		font-size: 0.75em;
	}
}


