*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

.display-inline * {
  display: inline-block;
}

.aria-hide {
  display: none;
}

#skip a {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#skip a:focus {
    position:static;
    width:auto;
    height:auto;
}

/* Variables */
:root {
	--primary-brand: #1C3F94;
	--secondary-brand: #3D8BCF;
	--secondary-brand-a: #3D8BCF80;
	--accent-1: #5289C9;
	--accent-1a: #5289C980;
	--accent-1-rgb: 82, 137, 201; 
	--dark-font-color: #0F004E;
	--light-font-color: #fff;

	--dark-grey: #4E4E4E;
	--medium-grey: #7B8591;
	--medium-grey-rgb: 123, 133, 145; 
	--light-grey: #F4F4F4; 
	--black: #000000;
	--navy: #11307E;
	--black: #000000;

	--serif-font: monarcha, serif;
	--sans-serif-font: filson-pro, sans-serif;
	
	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
}

/* background-colors */
.bg-primary-brand {
	background: var(--primary-brand);
}

.bg-secondary-brand {
	background: var(--secondary-brand);
}

.bg-grey {
	background: #8f8c8c;
}

/* TYPOGRAPHY
Using the Perfect Fifth factor from https://www.gridlover.net/try
*/
html {
  font-size: 16px;
  line-height: 21px;
  scroll-behavior: smooth;
}

body {
  max-width: 2560px;
  padding: 0;
  margin: 0 auto;  
  font-family: var(--sans-serif-font);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--dark-font-color);
}

body.school {
	color: var(--black);
}

h1, .h1 {
  font-family: var(--serif-font);
  font-weight: var(--font-semibold);
  font-style: normal; 
  font-size: 3.25rem;
  margin-top: 1.3125rem;
  margin-bottom: 2.625rem;
}

h2, .h2, h3, .h3, h4, 
.h4, h5, .h5, h6, .h6 {
  font-family: var(--serif-font);
  font-weight: var(--font-semibold);
  font-style: normal;
}

.page-template h1,
.page-template h2,
.page-template h3,
.page-template h4,
.page-template h5,
.page-template h6 {
	font-family: var(--sans-serif-font);
}

h2, .h2 {
  font-size: 2rem;
  margin-top: 1.3125rem;
  margin-bottom: 1.3125rem;
}

h3, .h3 {
  font-size: 1.375rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

h4, .h4 {
  font-size: 1rem;
  margin-top: 1.3125rem;
  margin-bottom: 0.75rem;
}

h5, .h5 {
  font-size: 1rem;
  margin-top: 1.3125rem;
  margin-bottom: 0.75rem;
}

@media all and (max-width: 62em){
	h1, .h1 {
		font-size: 2rem;
	}
	
	h2, .h2 {
		font-size: 1.5rem;
		margin: 1rem 0;
	}
}

p, ul, ol, pre, blockquote {
  margin-top: 0rem;
  margin-bottom: 1.3125rem;
}

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

h1 + h2 {
  margin-top: 0;
}

p {
	line-height: 1.5;
}

hr {
	border: 0;
    height: 1px;
    background-color: #e6e6e6;
	margin: 2rem 0;	
	clear: both;
}

main {
	margin-bottom: 2rem;
}

.home main {
	margin-bottom: 0;
}

.font-bold {
	font-weight: var(--font-bold);
}

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

.image img {
    margin: auto;
    display: block;
}

a {
  text-decoration: none;
}

blockquote {
    border-left: 5px solid var(--accent-1);
    padding: 1.5rem;
    margin: 0 0 1.5rem;
    position: relative;
	font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
}

/*blockquote {
	background: var(--light-grey);
	border-radius: 2px;
	border-left: 0.5rem solid var(--secondary-brand);
	padding: 1rem;
	margin: 0 0 1rem 0;	
}*/

blockquote::before {
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10e";
    position: absolute;
    top: 50%;
    left: -1.25rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
	font-style: normal;
    color: var( --accent-1);
    background: white;
    padding: .5rem;
}

blockquote p:last-of-type {
	margin-bottom: 0;
}

.allow-newlines {
  white-space: pre-wrap;
}

.no-padding {
  padding: 0;
}

.no-margin {
	margin: 0;
}

.margin-top-bottom {
	margin: 1rem 0;
}

.margin-left-right {
	margin-left: 1rem;
	margin-right: 1rem;
}

.align-right {
	margin-left: auto;
	display: block;
	text-align: right;
}

.flex-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.flex-row.icon-text-row {
	column-gap: .5rem;
}
ul {
	padding-left: 0;
	list-style: none;
}
.content-inner ul,
.content ul {
	padding-left: 1.2rem;
	list-style: unset;
}

.page {
	padding: 2rem 0;
}

.content {
	width: 100%;
}

.content-container {
	padding: 0 1rem;
}

.wrapper {
	display: block;
	width: 100%;
}

.content-wrapper {
	position: relative;
	width: 100%;
}

section {
	margin: 0 0 2.5rem;
}

.search-results {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.search-result {
	border: 1px dashed #c3c3c3;
	padding: 1rem 1rem 0;
	flex-basis: 100%;
	max-width: 100%;
}

.search-result a {
	display: flex;
	column-gap: 1rem;	
	color: var(--dark-font-color);
}

.search-description strong {
	color: var(--accent-1)
}

.error-page-container .input-buttons {
	margin: auto;
}

@media all and (min-width: 75em){
	.wrapper {
		display: flex;
		width: 100%;
	}
	.content-wrapper {
		width: calc(100% - 240px);
	}
	.content-container {
		padding: 0 2rem;
	}
	section {
		margin: 0 0 4.5rem;
	}
	blockquote {
	 	padding: 2rem
	}
	.container.pad-side {
		margin-top: 3rem;
	}
	.search-result {
		flex-basis: calc(50% - 1rem);
		max-width: calc(50% - 1rem);
	}
}


/* BUTTON & LINKS */
a {
  	transition: all .2s ease-in-out; 
	color: var(--accent-1);
}

a:hover,
a:focus {
	filter: brightness(90%)
}

.btn {
    padding: .5rem 1.5rem;
    font-weight: var(--font-bold);
    margin-top: 1rem;
    display: block;
	width: fit-content;	
	transition: all .3s ease-in-out;
}

.btn-primary {
	color: var(--light-font-color);
    background: var(--accent-1);
}

.btn-secondary {
	color: var(--light-font-color);
	background: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover, .btn-secondary:focus {
	background: rgba(255, 255, 255, 0.5);
	filter: none;
}

.btn-link {
	padding: 0;
	text-decoration: underline;
	color: var(--accent-1);
}

.btn-link-secondary {
	color: #fff;
}

.school .btn-primary {
	background: var(--secondary-brand);
}

.school .btn-link {
	color: var(--secondary-brand);
}

/* INPUT FIELDS */
input:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: none;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.input-field input[type="text"], .input-field input[type="password"], 
.input-field input[type="date"], .input-field input[type="tel"], 
.input-field input[type="email"], 
textarea {
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #e4e4e4;
    transition: 0.5s;
	padding: .5rem;
}

textarea {
	min-height: 200px;
}

input[type="submit"] {
    font-weight: bold;
    background: var(--accent-1);
    color: var(--btn-text);
	border-radius: 50px;
    border: 0;
    cursor: pointer;
    padding: .5rem 1.5rem;
    -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;
    transition: all .2s ease-in-out;
}

.input-field {
	margin-bottom: 1rem;
}

.input-field label {
    margin-bottom: .5rem;
    display: block;
}

.input-buttons {
    font-weight: var(--font-bold);
    margin-top: 1rem;
    display: block;
	width: fit-content;	
	color: var(--light-font-color);
    background: var(--accent-1);
}


/* Table Styles */
.table {
  margin: 0 0 2rem;
  overflow-x: auto;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
}

.table.bell-schedule {
	box-shadow: none;
}

.table table {
  border-radius: 5px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  background-color: white;
}

.table table td, 
.table table th {
  padding: 10px 15px;
}

.table table td {
  border-right: 1px solid #F7F6F4;
}

.table table td:last-of-type {
  border-right: 0;
}

.table table thead th {
  color: #ffffff;
  background: var(--secondary-brand);
}


.table table thead th:nth-child(even) {
  color: #ffffff;
  background: var(--primary-brand);
}

.table table tr:nth-child(odd) {
  background: #f5f5f5;
}

.table h3 {
	margin: .5rem 0;
}

.table img {
	width: 100%;
}

/* Header */
.logo {
	display: block;
	margin: auto;
	text-align: center;
	transition: all .1s ease;
}

.logo:hover, .logo:focus {
	filter: none;
}

.logo img {
	display: block;
	max-width: 200px;
	margin: auto;
}

.school .logo img {
	height: 100px;
	max-width: 100%;
    object-fit: contain;
}

header {
	background: var(--light-grey);
}

.header-row {
	position: relative;
}

.nav-link {
	color: var(--dark-font-color);
}

.school .nav-link {
	color: var(--black);
}

.nav-app {
	background: #fff;
    padding: 1rem;
}

.nav-app > ul {
	margin-bottom: 0;
	column-gap: .75rem;
	align-items: center;
}

.nav-app a {
	display: flex;
	color: var(--dark-font-color);
}

.school .nav-app a {
	color: var(--black);
}

.nav-app .icon-only {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nav-app i {
	font-size: 1.125rem;
}

.useful-links {
	column-gap: .5rem;
	text-transform: uppercase;
}

.useful-links span {
	font-size: .75rem;
	font-weight: var(--font-medium);
}

header .social-wrapper {
	column-gap: .75rem;
}

header .phone-wrapper, 
header .address-wrapper {
	column-gap: .5rem;
}

.header-social {
	font-size: .8rem;
	padding: 1rem 2rem;
	background: var(--primary-brand);
	color: var(--light-font-color);
}

.header-social i {
	font-size: 1.2rem;
}

.header-social a {
	color: var(--light-font-color);
	display: block;
}

.main-nav-ul {
	position: relative;
}

.main-dropdown-ul > li {
    padding: .5rem 0;
}

.nav-app .main-dropdown-div {
	position: absolute;
	top: 46px;
    left: unset;
    right: -50px;
    margin: 0;
    z-index: 400;
	min-width: 320px;	
}

.nav-app .main-dropdown-ul {
	border-top: 3px solid var(--secondary-brand);
}

#google_translate_element img {
	width: auto;
}

#google_translate_element a {
	display: unset;
}

.goog-te-combo {
    padding: .75rem;
    border: none;
    border-right: .5rem solid var(--light-grey);
    font-family: var(--sans-serif-font)!important;
    margin: -0.25rem 0 1rem -0.25rem!important;
    background: var(--light-grey);
}

#search-form label,
.search-api-form label {
	display: none;
}

/* Mobile Primary Navigation */
#menu-trigger {
	cursor: pointer;
}

.main-dropdown-ul a {
	color: var(--dark-font-color);
}

.school .main-dropdown-ul a {
	color: var(--black);
}
@media all and (max-width: 80em) {
	.useful-links span {
		display: none;
	}
}
@media all and (max-width: 1199px) {
	.logo img {
		margin: 0;
		max-width: 135px;
    	padding: .5rem
	}
	#menu-trigger {
		position: absolute;
		top: 22px;
		right: 1rem;
		font-size: 2rem;	
		z-index: 350;
	}
	.main-nav-ul.desktop {
		display: none;
	}
	.sticky-header #menu-trigger {
		position: fixed;
		background: var(--light-grey);
    	padding: .5rem;
	}
	.main-nav-ul {
		display: none;
		background: var(--light-grey);
		z-index: 300;
		padding: 4rem 1.5rem 1.5rem;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		min-height: 100vh;
		height: 100vh;
		overflow-y: scroll;
   		overflow-x: hidden;
	}
	.main-nav-ul > li {
   		margin: auto;
   		width: 100%;
		padding: 1rem 0 0;
	}
	.main-dropdown-ul {
		background: #fff;
		padding: .5rem 1rem;
	}
	.main-dropdown-trigger {
		justify-content: center;
	}
	
	.main-nav-ul div.nav-link,
	.main-nav-ul a.nav-link {
		display: flex;
		justify-content: space-between;
		padding-bottom: .75rem;
		border-bottom: 1px solid var(--medium-grey);
	}
	.nav-link a {
		color: var(--dark-font-color);
	}
	.school .nav-link a {
		color: var(--black);
	}
	.nav-app {
		position: absolute;
   		top: 20px;
    	right: 4rem;
    	padding: .5rem;
	}
	.nav-app .main-dropdown-div {
		background: #fff;
	}
	.nav-app .main-dropdown-ul {
		padding: 1rem 2rem;	
		margin-top: 0;
	}
	.useful-links span {
		display: none;
	}
	.header-social {
		display: flex;
		justify-content: center;
		column-gap: .75rem;
	}
	header .social-wrapper {
    	column-gap: .5rem;
	}
	header .phone-wrapper, header .address-wrapper {
    	margin-left: .5rem;
	}
}

@media all and (min-width: 75em){
	#menu-trigger {
		display: none;
	}
	.main-nav-ul.mobile {
		display: none;
	}
	.header-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.logo-wrapper {
		background: #fff;
   		width: 25%;
    	padding: 1rem 3rem;
	}
	.main-nav-wrapper {
		width: 75%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		column-gap: 2rem;
		padding: 0 2rem 0 0;
	}
	.main-nav-ul.desktop {
		display: flex!important;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		column-gap: 1rem;
		row-gap: 1rem;
		margin-bottom: 0;
	}
	.menu .main-nav-ul li {
		position: relative;
	}
	.main-dropdown-div {
		position: absolute;
		top: 2.5rem;
		left: 0;
		z-index: 500;
		background: #fff;
		min-width: 200px;
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	}
	.main-dropdown-ul {
		padding: 1rem 1.5rem;
	}
	.main-dropdown-div.visible::before {
		content: "";
    	position: absolute;
		top: -8px;	
		left: 40px;
    	z-index: 500;
    	border-left: 10px solid transparent;
    	border-right: 10px solid transparent;
		border-bottom: 8px solid #fff;
		transform-origin: top;
	}
	.nav-app .main-dropdown-div {
		top: 100%;
    	right: 2rem;
	}
	.nav-app .main-dropdown-div::before {
		content: none;
	}
	.header-social {
		position: absolute;
		top: 100%;
		z-index: 300;
		padding: 1rem;
		width: 40%;
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 2rem;
	}
	.nav-link {
		font-size: .875rem;
	}

}

@media all and (min-width: 99em){
	.logo-wrapper {
   		width: 32%;
	}
	.main-nav-wrapper {
		width: 68%;
	}
	.nav-link {
		font-size: 1rem;
	}
	.header-social {
		width: 32%;
		column-gap: 2rem;
		flex-direction: row;
	}
	.main-nav-ul.desktop {
		column-gap: 1.5rem;
	}
}


/* Footer */
footer {
	background: var(--light-grey);
	padding: 2rem 0;
	line-height: 1.5;
	color: var(--navy);
}

footer > section {
	margin: 0;
}

footer a {
	color: var(--navy);
	display: inline-block;
}

.school footer,
.school footer a {
	color: var(--black);
}

footer h3 {
	color: var(--accent-1);
	font-size: 1.375rem;
}

.school footer h3 {
	color: var(--secondary-brand);
}

footer .footer-logo {
	width: 100%;
	max-width: 300px;
    margin-bottom: 2rem;
}

.school footer .footer-logo {
	max-width: 200px;
}

footer address {
	font-style: normal;
    margin-bottom: 1rem;
}

footer .email {
	margin: 1rem 0;
}

footer .social-wrapper {
	margin-bottom: 1.5rem;
}

footer .social-wrapper a {
    margin-right: .5rem;
}

footer .footer-primary-links a {
    color: var(--accent-1);
    margin-right: 1rem;
}

footer .col-xs-12 {
	margin-bottom: 1.5rem;
}

footer ul {
	margin-bottom: 0;
}

footer ul li {
	margin-bottom: .5rem;
}

footer .copyright {
	margin-top: 3rem;
    color: var(--accent-1);
}

footer .copyright a {
	color: var(--accent-1);	
	display: inline;
}

.school footer .copyright,
.school footer .copyright a {
    color: var(--black);
}

footer .copyright img {
	width: 150px;
    margin-bottom: 1rem;
}

@media all and (min-width: 62em){
	footer {
		padding: 4rem 0 2.5rem;
	}

	footer .copyright {
		text-align: center;
		margin-top: 5rem;
	}
	footer .col-md-4 {
		flex-basis: auto;
	}

}

/* Home - Banner */
.district .spotlight-wrapper {
	margin-bottom: 0;
}
.spotlight-item {
	position: relative;
}

.spotlight-item img {
	height: 100%;
    width: 100%;
    display: block;
}

.school .spotlight-item img {
	aspect-ratio: 1440/700;
	min-height: 220px;
}

.spotlight-wrapper.no-quicklink .spotlight-item img {
	aspect-ratio: 1920/700;
}

.spotlight-item.featured {
    height: 100%;
}

.spotlight-item.small {
    height: 220px;
}

.spotlight-item.featured .spotlight-content {
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 45, 75, .6);
    color: var(--light-font-color);
    padding: 1.5rem 2rem;
}

.school .spotlight-item.featured .spotlight-content {
	background: var(--primary-brand-a);
}
.spotlight-item.featured .spotlight-content h1 {
	margin: 0 0 .5rem;
	font-family: var(--sans-serif-font);
	font-size: 1.5rem;
}

.spotlight-item.small .spotlight-content {
    position: absolute;
	top: 50%;	
	left: 0;
    transform: translateY(-50%);
    z-index: 200;
    color: var(--light-font-color);
    text-align: left;
    padding: 0 2rem;
}

.spotlight-item.small.has-image .spotlight-overlay {
	background: rgba(33, 45, 75, .69);
	width: 100%;
	height: 100%;
	aspect-ratio: 480/350;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.spotlight-item.small .btn {
	margin: 1rem 0 0;
}

.spotlight-item.small h3 {
	font-size: 1.5rem;
	margin: 0 0 .5rem;
}

/* Video Background */
.spotlight-item.featured.video {
	position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
}

.spotlight-item.featured.video iframe {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 178%;
    height: 100%;
}

@media all and (max-width: 30em){
	.spotlight-item.featured.video {
    	padding-bottom: 80%;
	}
}

@media all and (min-width: 48em){
	.spotlight-item.featured .spotlight-content {
		padding: 2rem 3rem;
	}
	.spotlight-item.featured .spotlight-content h1 {
		font-size: 2.5rem;
		margin: 0 0 1rem;
	}
	.spotlight-item.small h3 {
		font-size: 1.625rem;
		margin: 0 0 1rem;
	}

	.spotlight-section.small {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.spotlight-item.small {
		width: 50%;
		height: auto;
		aspect-ratio: 480/350;
	}
	.spotlight-item.small img {
		aspect-ratio: 480/350;
	}
	.spotlight-item.small.has-image {
		aspect-ratio: unset;
		height: calc(350/ 480 * 50vw);
	}
	.spotlight-item.small .spotlight-content {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 200;
		color: var(--light-font-color);
		text-align: center;
		padding: 0;
		width: 80%;
	}
	.spotlight-item.small .btn {
		margin: 1.5rem auto 0;
	}

}

@media all and (min-width: 75em){
	.spotlight-wrapper {
		display: flex;
	}
	.spotlight-wrapper.no-quicklink .spotlight-section.featured {
		width: 100%;
	}
	.spotlight-section {
		width: 50%;
	}
	.spotlight-section.small {
		width: 25%;
	}
	.school .spotlight-section.featured {
		width: 75%;
	}
	.school .spotlight-section.small {
		width: 25%;
	}
	.spotlight-item.small {
		width: 100%;
	}
	.school .spotlight-item.small {
		width: 100%;
	}
	.spotlight-item.small.has-image {
		height: calc(350/ 480 * 25vw);
	}
	.spotlight-item.featured .spotlight-content {
		padding: 3.5rem 4.5rem;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.spotlight-item.featured .spotlight-content p {
		font-size: 1.625rem;
	}
	.spotlight-item.featured.video {
		padding-bottom: 0;
		height: 100%;
	}

}

@media all and (min-width: 99em){
	.spotlight-item.small {
		max-height: 600px;
	}
}

/* Home - Main CTAs */
.cta-content h3 {
	font-family: var(--sans-serif-font);
	font-weight: var(--font-bold);
	color: var(--primary-brand);
}

.cta-content p {
	color: var(--dark-font-color);
}

.main-cta-row {
	display: flex;
	flex-wrap: wrap;
	min-height: calc(1 / 5 * 100vw);
}

.cta-item {
	background: #fff;
	position: relative;
	padding: 0;
	width: 100%;
	max-width: 100%;
	display: block;
	height: 100%;
}

.cta-item img {
	width: 100%;
}

.cta-content {
    position: absolute;
    top: 50%;
	transform: translateY(-50%);	
}

@media all and (max-width: 75em){
	.cta-item {
		padding: 0 2rem;
		margin-top: 2rem;
	}
	.cta-item.no-image {
		aspect-ratio: unset;
	}
	.cta-item .cta-content {
		position: static;
		transform: unset;
	}
	.cta-item .cta-content h3 {
		margin: 0 0 1rem;
		display: block;
	}
	.cta-item.has-image .cta-content h3 {
		margin: 1rem 0;
	}
}

@media all and (min-width: 75em){
	.about-text {
		padding-right: 1rem;
	}
	
	.main-cta-row {
		display: flex;
		align-items: center;
	}
	.cta-item {
		width: 50%;
		padding: 0;
		aspect-ratio: 2.5/1;
	}
	.cta-item img {
		height: 100%;
    	display: block;
	}
	.cta-item:nth-of-type(1) .cta-content {
		right: 6%;
		padding-left: 3rem;
		flex-direction: row-reverse;
	}
	.cta-item:nth-of-type(1) .cta-content h3 {
		text-align: right;
	}

	.cta-item:nth-of-type(2) .cta-content {
		left: 6%;
		padding-right: 3rem;
	}
	.cta-content {
		margin-left: unset;
	}

	.cta-item .cta-content.has-desc {
		display: flex;
		align-items: center;
		justify-content: space-between;
		column-gap: 1rem;
	}
	.cta-content.has-desc h3 {
		width: 25%;
	}
	.cta-content.has-desc .cta-text {
		width: 75%;
	}
}

@media all and (min-width: 99em){
	.main-cta-row {
		min-height: unset;
	}
}

/* Home - Secondary CTAs */
.secondary-cta > .row {
	width: 100%;
}

.secondary-cta  {
	margin-bottom: 0;
}

.secondary-cta-item,
.secondary-cta-item img {
	aspect-ratio: 960/578;
	width: 100%;
}

.secondary-cta-item.text {
	position: relative;
	display: flex;
    flex-direction: column;
	justify-content: center;	
	overflow: hidden;
	padding: 2rem;
	aspect-ratio: unset;
}

.infinity-symbol {
    display: block;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    right: -35%;
	z-index: 200;
	width: 100%;
}

.school .infinity-symbol path {
    fill: var(--secondary-brand);
}

@media all and (max-width: 62em) {
	.infinity-symbol {
		max-height: 85%;
	}
}

@media all and (min-width: 62em) {
	.secondary-cta-row {
		display: flex;
		align-items: center;
	}
	.secondary-cta-item {
		width: 50%;
	}
	.secondary-cta-item,
	.secondary-cta-item img {
		aspect-ratio: 960/578;
	}
	.secondary-cta-item.text {
		padding: 0 1.5rem;
		aspect-ratio: 960/578;
	}
	.secondary-cta-text {
		width: 100%;
	}
	.secondary-cta-item p {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}
}

@media all and (min-width: 75em) {
	.secondary-cta-item.text {
		padding: 0 5%;
	}
	.secondary-cta-text {
		width: 70%;
	}
}

/* Home - News */
.home-news h2 {
	margin-bottom: 1.5rem;
}

.home-news .btn {
	margin-top: 1.5rem;
}

.news-item {
	display: block;
	margin-bottom: 1.5rem;
}

.news-item img {
	aspect-ratio: 450/315;
	width: 100%;
}

.news-text {
	margin-top: 1rem;
}

.news-title {
	font-family: var(--sans-serif-font);
	font-size: 1.25rem;
	color: var(--primary-brand);
	margin: 0;
}

.news-item .format-date {
	font-weight: var(--font-medium);
	color: #A2A2A2;
}

.no-cover-image {
	position: relative;
	width: 100%;
    aspect-ratio: 450/315;
    background: var(--light-grey);
}

.no-cover-image::after {
	content: "";
    background: url(/images/logo.png) no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    width: 80%;
    height: 80%;
    margin: auto;
}

@media all and (max-width: 75em) {
	.home-news.container {
		width: 100%;
	}
}

@media all and (min-width: 48em) {
	.news-item {
		margin-bottom: 0;
	}
	
	.news-wrapper article {
		margin-bottom: 1.5rem;
	}
}



/* News Article & Event Article */
.article-template {
	margin: 1rem auto;
}

.recent-wrapper {
	background: var(--secondary-brand);
	color: var(--light-font-color);
	padding: 1.5rem 1rem;
}

.recent-wrapper h3 {
	font-family: var(--sans-serif-font);
	margin-top: 0;
	margin-bottom: 1rem;
}

.recent-wrapper .btn {
	margin-top: 2rem;
}

.recent-list {
	margin-bottom: 0;
}

.recent-item {
    margin-bottom: 1rem;
}

.recent-item a {
	color: var(--light-font-color);
}

.recent-item .event-title {
    font-weight: var(--font-medium);
}

.recent-item .format-date {
    font-size: .85rem;
    color: rgba(255,255,255, 0.7);
}

.article-template article {
   	margin-bottom: 2rem;
}

.article-title {
	color: var(--light-font-color);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.article-date {
	margin-bottom: 1rem;
    color: #A2A2A2;
    font-weight: var(--font-medium);
}

@media all and (min-width: 62em) {
	.article-template {
		padding-left: 0;
	}
}

@media all and (min-width: 75em) {
	.article-template > .row {
		justify-content: flex-end;
	}

	.recent-wrapper {
		margin-top: 4.5rem;
		padding: 2rem 2rem 2rem 3rem;
	}
	.article-template article {
   		margin: 5rem 0 3rem 3rem;
	}
}


/* Page Template */
.page-template {
	margin: 1rem auto 3rem;
}

.featured-img img {
	display: block;
	width: 100%;
	aspect-ratio: 2/1;
}

.featured-img-container {
	margin-bottom: 2rem;
}

.featured-img {
	position: relative;
}

.featured-img-container h1 {
	font-family: var(--sans-serif-font);
}

.featured-img-container.with-image h1 {
	background: rgba(var(--accent-1-rgb), 0.6);
	color: var(--light-font-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 2rem 0;
}

.school .featured-img-container.with-image h1 {
	background: rgba(var(--medium-grey-rgb), 0.6);
	background: var(--accent-1a);
}

.featured-img-container.title-only {
	background: var(--accent-1);
	opacity: 0.7;
	color: var(--light-font-color);
    padding: 3rem 1rem;
    text-align: center;
}

@media all and (min-width: 48em) {
	.featured-img img {
		aspect-ratio: 3/1;
	}
}

@media all and (min-width: 75em) {
	.featured-img-container.title-only {
		padding: 5rem 1rem;
	}
	.page-template {
		margin: 1rem auto 5rem;
	}
	.featured-img img {
		aspect-ratio: 4/1;
	}
	.featured-img-container.with-image h1 {
		padding: 3rem 0;
	}

}
/* Side Navigation */
.sidebar-wrapper {
	margin-bottom: 1rem;
}

.sidebar {
	background: var(--light-grey);
  /* border-left: 3px solid var(--accent-1);*/
	color: var(--dark-font-color);
	padding: 1rem;
}
.nav-secondary {
	margin-top: 1rem;
}
.nav-secondary ul {
	margin-bottom: 0;
}
.nav-secondary a {
	color: var(--dark-font-color);
}

.secondary-nav-item {
    padding: .5rem 0;
    width: fit-content;
}

.parent-title, .nav-secondary {
	display: none;
}

.cookie {
    margin-left: -.5rem;
}

.cookie a {
	margin-bottom: .5rem;
}

@media all and (min-width: 62em) {
	.current-page {
		display: none;
	}
	.nav-secondary {
		display: block!important;
		margin-top: unset;
	}
	.nav-secondary a {
		color: var(--light-font-color);
	}
	.parent-title {
		display: block;
		border-bottom: 2px solid #fff;
		margin-bottom: .5rem;
	}
	.page-template.content-container {
		padding-left: 0;
	}

	.sidebar {
		background: var(--secondary-brand);
		color: var(--light-font-color);
		padding: 2rem;
	}
}

@media all and (min-width: 75em) {
	.content.has-side-nav {
		margin: 1.5rem 0 3rem 3rem;
	}
	.content {
		margin: 1.5rem 0 3rem;
	}
	.sidebar {
		margin-top: 1rem;
	}

}

@media all and (min-width: 99em) {
	.sidebar {
		padding: 2rem 2rem 2rem 4rem;
	}

}

/* Contact Template */
.contact-template .address-wrapper {
	margin: 1rem 0 2rem;
}

.contact-template address {
	font-style: normal;
}

.contact-info p {
	margin: 1rem 0 .25rem;
	color: var(--primary-brand);
}

.contact-info a {
	color: var(--dark-font-color);
}

.contact-text {
	margin-top: 2rem;
}
@media all and (min-width: 62em) {
	.contact-template .address-wrapper {
		margin: 2rem 0;
	}
	.contact-text {
		margin-top: 0;
	}

}

/* Landing Page Template */
.row.landing {
    row-gap: 1rem;
    flex-wrap: wrap;
}

.landing-page-padding {
	background: var(--light-grey);
	color: var(--primary-brand);
	border-bottom: 5px solid var(--primary-brand);
	min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/*.landing-item:hover, .landing-item:focus {
	filter: brightness(0.85)
}*/

.landing-item h3 {
    font-family: var(--sans-serif-font);
}

@media all and (min-width: 62em) {
	.landing-page-padding {
		min-height: 160px;
	}
}


/* General DCT Template */
.featured-img img.bottom {
	object-position: bottom;
}

.featured-img img.top {
	object-position: top;
}

.featured-img img.center, .featured-img img {
	object-position: center;
}

.dct-template .intro-content {
	background: var(--light-grey);
	padding: 1rem 1.5rem;	
	margin-bottom: 2rem;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.dct-template .intro-content img {
	max-width: 150px;
	width: 100%;
}

.content-row.border-top {
  padding-top: 4rem;
  margin-top: 4rem;
  border-top: 1px solid #e3e3e3;
}

.content-row.border-top-bottom {
  padding: 4rem 0;
  margin: 3rem 0;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.content-row.border-bottom {
  padding-bottom: 4rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e3e3e3;
}

.content-row.border-top > div *:first-child,
.content-row.border-top-bottom > div *:first-child  {
  margin-top: 0;
}

.content-row.border-bottom > div *:last-child,
.content-row.border-top-bottom > div *:last-child {
  margin-bottom: 0;
}

.content-row img {
  display: block;
  width: 100%;
}

.content-row .btn {
  margin-bottom: 1rem;
  display: inline-block;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 1.5rem;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.useful-links-wrapper {
  margin-top: 1.3125rem;
  margin-bottom: 5rem;
}

.useful-link {
  line-height: 1;
  margin-top: 2rem;
  text-align: center;
}

.useful-link a {
	display: block;
	padding: 1.5rem 1rem;
	color: var(--light-font-color);
}

.useful-link i {
  display: block;
  font-size: 40px;
  margin-bottom: .5rem;
}

.useful-link span {
	font-size: 1.25rem;
	font-weight: bold;	
}

.useful-link i,
.useful-link span {
  -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;
  transition: all .2s ease-in-out;
}

.useful-link a:hover i,
.useful-link a:focus i {
  opacity: 0.8;
}

.useful-link a:hover span,
.useful-link a:focus span {
  border-bottom: 1px solid;
}

.simple-links-wrapper h5 {
  margin-bottom: .75rem;
}

.simple-links-wrapper .simple-link {
  margin: 0 0 .5rem;  
}

.simple-links-wrapper .pre-link {
  margin: 1rem 0 0.5rem 0;
}

.documents-section {
    margin-top: 1.3125rem;
    margin-bottom: 5rem;
}

.documents-section ul {
	list-style: none;
	margin: 0;
	padding: 0;
	box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}

.documents-section ul li {
	padding: 0.5rem 1rem;
	margin: 0;
}

.documents-section ul li:nth-child(2n) {
	background: #f5f5f5;
}

.content-boxes .col-xs-12 {
	margin-bottom: 1.5rem;
}

.content-box {
	display: block;
    height: 100%;
	background: var(--light-grey);
	color: var(--dark-font-color);
    padding: 1rem;
    border-bottom: 5px solid var(--primary-brand);
}

.content-box h3 {
	margin-top: 0;
}

.content-box img {
	width: 100%;
	aspect-ratio: 16/9;
}

/* Content Tabs */
.ui-widget.ui-widget-content,.ui-widget-content  {
    border: none; 
	background: transparent;
	font-family: var(--sans-serif-font);
	margin: 0;
}

/* Tab Header */
.ui-widget-header {
	border: none;
	background: transparent;
}

.ui-tabs .ui-tabs-nav {
    padding: 0;
	display: flex;
    flex-wrap: wrap;
    row-gap: .5rem;
	border-bottom: 2px solid var(--primary-brand);
	border-radius: 0;
}

.ui-tabs .ui-tabs-nav li {
    font-weight: 700;
	border: none;
    background: var(--light-grey);
	transition: all .2s ease-in-out;
	margin: 0 .5rem 0 0;
	border-radius: 0;
}

.ui-tabs .ui-tabs-nav li:hover {
	filter: brightness(1.02);
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: 0;
	padding-bottom: 0;
	background: var(--primary-brand);
	border: none;
}

/* Tab Content */
.ui-tabs .ui-tabs-panel {
    padding: 1rem 0.25rem;
	margin-top: 0;
}

.ui-widget-content a {
    color: var(--primary-brand);
}

.ui-widget-content .btn {
	margin-top: 1rem;
}

.ui-widget-content .btn-primary {
	color: white;
}

.ui-widget-content .btn-link {
	color: var(--accent-1);
}

.tab-item-content {
	padding: 1rem 0;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    white-space: pre-wrap;
}

/* Photo Gallery */
.gallery-item {
	margin-bottom: 1rem;
}
.gallery-item img {
    min-height: unset;
	aspect-ratio: 4/3;
	width: 100%;
}

.pswp__custom-caption {
    text-align: center;
    font-size: 16px;
    color: #fff;
    width: fit-content;
    max-width: 800px;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
}

@media (min-width: 62em) and (max-width: 99em) {
	.useful-link span {
		font-size: 0.9rem;
	}
}

/* School Finger App */
#school-finder-app p {
  margin-bottom: .5rem;
}

#legend {
  list-style: none;
  margin: 2rem 0;
  padding: 0;  
}

#legend li {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 10px;
    background: #efefef;
	border-radius: 50px;
}

#legend i { vertical-align: middle } 

#legend .elementary { color: #f15d43 }
#legend .junior-high-school { color: #67DEDE }
#legend .high-school { color: #6B95FE}
#legend .other { color: #FF9900 }

/* School Styles */
.school .home-about h2 {
	font-family: var(--sans-serif-font);
	margin: 0 0 1rem;
}

@media (min-width: 62em) {
	.school .home-about h2 {
		font-size: 1.75rem;
	}
	.about-text p {
		width: 90%;
	}
}

/* Rich Text Editor */
figure figcaption {
	margin-top: 0px;
}

.editor iframe {
    width: 100%;
    min-height: 300px;
}

@media (min-width:62em) {
    .editor iframe {
        min-height: 500px;
    }
}

/* Collapsible box - rich text editor */
.collapsible-box {
	width: 100%;
}

.collapsible-box .material-icons {
	color: var(--secondary-brand);;
}

.collapsible-box-description { 
	display: none;
	margin: 1rem 1rem 0;
}

.collapsible-box-title {
    background-color: var(--light-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
	cursor: pointer;
	font-size: 1.3rem;
}

.collapsible-bottom-icon {
	cursor: pointer;
}

/* Collapsible boxes - lexical rte */
.editor details summary {
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
	margin: 0;
	cursor: pointer;
    transition: all .3s ease-in-out;
}

.editor details summary i {
    color: var(--secondary-brand);
    margin-right: .5rem;
}

.editor details {
    margin-bottom: 1rem;
    transition: all .3s ease-in-out;
}

.editor div[data-lexical-collapsible-content]{
    padding: 1rem;
}

/* Home Calendar */
.home-calendar {
    margin-top: 2.5rem;
}

.home-calendar h2 {
    margin-bottom: 1.5rem;
}

@media (min-width: 62em){
	.home-calendar #mobile-calendar-list {
		display: none;
	}
	
	.home-calendar {
		margin-top: 4.5rem;
	}
	
	/*.home-calendar #calendar {
		height: 90vh!important;
	}*/
}
