*,
*: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: #027D8C;
	--primary-brand-a: #027D8C4D;/* opacity 30% */
	--primary-brand-b: #027D8CCC;/* opacity 80% */
	--secondary-brand: #E85A47;
	--secondary-brand-a: #E85A4766;/* opacity 40% */
	 --primary-text: #ffffff;;
	 --secondary-text: #ffffff;;
	 --secondary-text-a: #ffffffCC;;
	
	--dark-font-color: #3C3C3C;
	--light-font-color: #fff;
	--dark-grey: #3C3C3C;
	--medium-grey: #696969;
	--light-grey: #F8F8F8; 

	--body-font: 'Roboto', sans-serif;
	--font-regular: 400;
	--font-medium: 500;
    --font-semibold: 600;
	--font-bold: 700;
	--font-black: 900;
}

/* background-colors */
.bg-primary-brand {background: var(--primary-brand)}
.bg-secondary-brand {background: var(--secondary-brand)}
.bg-dark-grey {background: var(--dark-grey)}
.bg-light-grey {background: var(--light-grey)}
.brand-2 {color: var(--secondary-brand)}

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

@media (min-width: 99em){
	html {
	  font-size: calc(12px + 0.390625vw);
	}
}

@media (min-width: 125em){
	html {
	  font-size: calc(15px + 0.390625vw);
	}
}

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

h1, .h1 {
  font-weight: var(--font-bold);
  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-weight: var(--font-bold);
  font-style: normal;
}

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: 2.5rem;
	}
	
	h2, .h2 {
		font-size: 2rem;
	}
}

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

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

a {
  text-decoration: none;
}

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

/*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(--primary-brand);
    background: white;
    padding: .5rem;
}*/

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

ul {
	padding-left: 0;
	list-style: none;
}

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

.no-padding {
  padding: 0;
}

.no-margin {
	margin: 0;
}

.flex-row {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.flex-column-center {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.content-inner ul,
.content ul {
	padding-left: 1.2rem;
	list-style: unset;
}

.page {
	padding: 2rem 0;
}

.content {
	width: 100%;
}

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

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


@media all and (min-width: 75em){
	.wrapper {
		display: flex;
		width: 100%;
	}
	
	.full-container {
		padding: 0 2rem;
	}
	

	blockquote {
	 	padding: 2rem
	}
}

/* Layout */
.content-container,
.container.pad-side,
.side-container {
	padding: 0 1rem;
}

.container.pad-side {
	margin: 0 1rem;
}

main section {
	margin-bottom: 2rem;
}

main section.extra-margin {
	margin-bottom: 2.5rem;
}

@media all and (min-width: 48em){
	.content-container,
	.container.pad-side {
		padding: 0 5%;
		width: auto;
	}
}

@media all and (min-width: 62em){
	.content-container,
	.container.pad-side {
		padding: 0 7.5%;
	}
	
	.side-container {
		padding-left: 0;
		padding-right: 7.5%;
	}
		
	.container.pad-side {
		margin-top: 3rem;
	}
}

/* Search Results */
.container.pad-side > .row > h1 {
	width: 100%;
}
.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(--primary-brand);
}

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

@media (min-width: 75em){
	/*.search-result {
		flex-basis: calc(50% - 1rem);
		max-width: calc(50% - 1rem);
	}*/
}

/* show and hide on different screen sizes */
.mobile-only {
	display: block;
}

.desktop-only {
	display: none;
}

@media all and (min-width: 75em){
	.desktop-only {
		display: block;
	}
	.mobile-only {
		display: none;
	}
}

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

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

a.btn {
	color: var(--light-font-color);
    padding: .75rem 1.75rem;
    font-weight: var(--font-bold);
	font-size: 1rem;
	font-family: var(--btn-font);
	border-radius: 10px;
    margin-top: 1rem;
    display: block;
	width: fit-content;	
	transition: all .3s ease-in-out;
}

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

a.btn-link {
	padding: 0;
	width: fit-content;
	color: var(--secondary-brand);
	font-weight: var(--font-medium);
}

a.btn-link.flex-row {
	gap: .25rem;
	margin-bottom: 1rem;
}

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

/* 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: var(--font-bold);
    background: var(--secondary-brand);
    color: var(--secondary-text);
    border: 0;
    cursor: pointer;
    padding: .5rem 1rem;
	font-size: .9rem;
    -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);
}

/* Alerts */
.banner-alert-wrapper {
	font-size: 1rem;
}

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

/* Search bar */
#search-button, 
.search-bar-wrapper label {
	display: none;
}

#search-button.solid {
	display: block;
}

.search-api-form .input-field {
	position: relative;
}

#search-term, .input-field input[type="text"].search-box {
	border: none;
    padding: 1rem 1rem 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.09);
}

#search-term.solid, .input-field input[type="text"].search-box.solid {
	background: white;
	padding: .5rem .5rem .5rem 2rem;
}

#search-term::placeholder,
.input-field input[type="text"].search-box::placeholder {
	color: var(--secondary-text-a);
}

#search-term.solid::placeholder,
.input-field input[type="text"].search-box.solid::placeholder {
	color: var(--medium-grey);
	font-size: .9rem;
}

#search-term:focus,
.input-field input[type="text"].search-box::focus {
	border: none;
	color: white;
    background: rgba(255, 255, 255, 0.09);
}

#search-term.solid:focus,
.input-field input[type="text"].search-box.solid::focus {
	border: none;
    background: rgba(255, 255, 255, 1);
	color: var(--dark-font-color);
}

.search-bar-wrapper {
	margin: 0 0 1rem;
}

.search-bar-wrapper.solid {
	margin: 0;
}

.search-bar-wrapper i {
	color: var(--secondary-text);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: .75rem;
}

.search-bar-wrapper.solid i {
	color: var(--primary-brand);
	left: .5rem;
}

/* Google Translate */
.goog-te-gadget .goog-te-combo {
	margin: 0 0 1rem!important;
	padding: 0.75rem;
    border: none;
	border-right: 0.5rem solid #fff;
    font-weight: var(--font-medium);
}

/* Header */
.logo {
	display: flex;
    align-items: center;
    gap: .5rem;
	padding: .25rem 0;
}

.logo img {
	display: block;
	object-fit: contain;
    height: 50px;
}

.logo h3 {
    color: black;
    font-size: 1rem;
    font-weight: var(--font-medium);
    text-transform: uppercase;
}

.nav-app-row {
	position: relative;
	color: white;
    padding-top: 0.75rem;
	padding-bottom: 0.75rem;
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
	border-bottom: 5px solid var(--secondary-brand);
}

.nav-app-icon {
	color: var(--primary-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
	cursor: pointer;
}

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

.nav-app-icon.translate i,
.nav-app-icon.apps i {
	font-size: 1.3rem;
}

.nav-app-dropdown {
	display: none;
    position: absolute;
    top: calc(100% + 5px);
	left: 0;
    right: 0;
    z-index: 100;
    background: #EAF0F3;
    padding: 1rem;
}

.main-nav-wrapper {
	background: #F8F8F8;
}

.main-nav-row {
	position: relative;
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-primary {
	display: none;
	position: absolute;
	background: var(--light-grey);
	top: 0;
	left: 0;
	right: 0;
	padding: 4rem 1rem 2.5rem;
	z-index: 10;
	height: calc(100dvh - 49.8px);
    overflow: scroll;
}

.nav-primary a,
.menu-icon {
	color: var(--dark-font-color);
	cursor: pointer;
}

.menu-icon {
	z-index: 11;
	display: flex;
    justify-content: center;
    flex-direction: column;
}

.nav-primary a:hover,
.nav-primary a:focus{
	color: var(--primary-brand);
}

.nav-link:hover a,
.nav-link:focus a,
.nav-link:hover i,
.nav-link:focus i {
	color: var(--primary-brand);
}

.main-dropdown-ul {
	display: none;
    background: var(--primary-brand-a);
    left: 1rem;
    right: 1rem;
    padding: 0.5rem;
}

.nav-link-icon {
	cursor: pointer;
}

.main-nav-ul {
	margin-bottom: 0;
}

.no-dropdown > .nav-link,
.main-dropdown > .nav-link {
	justify-content: space-between;
	border-bottom: 1px solid var(--primary-brand);
    padding: 0.75rem 0 0.5rem;
}

.nav-link {
    padding: 0.25rem 0;
}

.app-links {
	display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-link {
	color: var(--dark-grey);
}

.app-link:hover,
.app-link:focus {
	color: var(--primary-brand);
}

@media (min-width: 62em){
	.nav-primary {
		padding: 2.5rem 7.5% 2.5rem;
	}
	
	.nav-app-dropdown {
		left: unset;
		right: 7.5%;
		width: fit-content;
	}
}

@media (max-width: 1199px){
	.main-dropdown-ul {
		display: block;
		height: 0;
		padding: 0;
		opacity: 0;
		transform: scaleY(0);
		transform-origin: top;
		transition: all .3s ease;
	}
	.main-dropdown-ul.active{
		transform: scaleY(1);
		opacity: 1;
		height: auto;
	}
	
	.main-dropdown-ul .nav-link {
		padding: .25rem .75rem;
	}
	
	.main-dropdown-ul .nav-link:first-of-type {
		padding-top: .5rem;
	}
	
	.main-dropdown-ul .nav-link:last-of-type {
		padding-bottom: .5rem;
	}
}

@media (min-width: 75em){
    .main-nav-row {
        padding-left: 1rem;
    }

	.logo {
		padding: 0.5rem 0;
	}
	
	.logo img {
		height: 4rem;
	}

    .logo h3 {
        max-width: 19rem;
        font-size: 1.2rem;
    }

	.nav-primary {
		display: block!important;
		position: unset;
		padding: unset;
		background: unset;
		align-self: stretch;
		min-height: unset;
		height: unset;
		overflow: unset;
	}
	
	.menu-icon {
		display: none;
	}
	
	.main-nav-ul {
		display: flex;
		align-items: center;
		gap: 1.25rem;
		font-weight: var(--font-medium);
		margin-bottom: 0;
		height: 100%;
	}
	
	.main-dropdown-ul {
		display: unset;
		background: #EAF0F3;
		transition: all .3s ease;
		transform: scaleY(0);
		transform-origin: top;
		opacity: 0;
		position: absolute;
		top: 100%;
    	width: 14rem;
    	max-width: 350px;
		left: 0;
		padding: 1rem;
	}
	
	.main-dropdown:hover .main-dropdown-ul{
		transform: scaleY(1);
		opacity: 1;
	}
	
	.main-dropdown {
		align-self: stretch;
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: relative;
	}
	
	.no-dropdown > .nav-link,
	.main-dropdown > .nav-link {
		justify-content: unset;
		border-bottom: unset;
		padding: unset;
		column-gap: 0;
	}
	
	.main-nav-ul li:last-of-type .main-dropdown-ul {
		right: 0;
		left: unset;
	}
	
	.main-dropdown-ul.two-col {
		display: flex;
		flex-wrap: wrap;
		width: 25rem;
		max-width: unset;
    	gap: 0.5rem;
		column-gap: 1rem;
	}
	
	.main-dropdown-ul.two-col .nav-link {
		width: calc(50% - .5rem);
	}
}
@media (min-width: 99em){
	.nav-app-row {
		gap: 1rem;
	}
	
}


/* Footer */
footer p, footer h4, footer ul {
	margin: 0;
}
.footer-top {
	color: var(--secondary-text);
	font-weight: var(--font-medium);
	border-bottom: 5px solid var(--secondary-brand);
}

.footer-top a {
	color: var(--secondary-text);
}

.footer-top a:hover,
.footer-top a:focus{
	color: var(--secondary-brand);
}

.footer-top li {
	padding-bottom: .5rem;
}

.footer-top .social-icon {
    color: var(--primary-brand);
	font-size: 1.2rem;
}

.footer-top-content {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.footer-top-content > .row > .col-xs-12 {
	margin-bottom: 2rem;
}

.footer-top .contact-content {
	color: var(--secondary-text);
}

.footer-top .col-intro {
	margin-bottom: .5rem;
}

.footer-top address {
    font-style: normal;
    margin-bottom: 0.5rem;
}

.footer-top .contact-info {
    margin-bottom: 0.5rem;
}

.footer-top .bus-info {
    margin-bottom: 0.5rem;
}

.footer-top .social-wrapper {
	gap: 0.75rem;
}

.footer-top .row .logo-wrapper {
	margin-bottom: 0;
}

.footer-top .footer-logo {
	max-width: 200px;
	width: 60%;
    display: block;
}

.footer-top .footer-logo img {
	width: 100%;
    display: block;
	padding: 1rem 0;
}

.footer-bottom {
	color: var(--medium-grey);
	background: #F8F8F8;
	padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer-bottom .copyright {
    row-gap: 0.5rem;
}

.footer-logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.erase-logo {
	width: calc(50% - 2rem);
    margin-left: 1rem;
	max-width: 200px;
    display: block;
}
.erase-logo img {
	display: block;
}
@media (min-width: 62em){
	.ie-website {
		text-align: right;
	}
	
	.footer-top .footer-logo {
		width: 40%;
	}
}

@media (min-width: 75em){
	.footer-top-content {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	
	.footer-top-content > .row > .col-xs-12 {
		margin-bottom: 0;
	}
	
	.footer-top .col-intro {
		margin-bottom: 1rem;
	}
	
	.footer-top address,
	.footer-top .contact-info,
	.footer-top .bus-info {
		margin-bottom: 1rem;
	}
	
	.footer-top .search-bar-wrapper {
		margin: 0 0 2rem;
	}
	
	.footer-top .footer-logo {
		width: 50%;
	}

}

/* Home - General */
.heading-row {
	display: flex;
	align-items: center;
    justify-content: space-between;
	gap: 2rem;
}
.heading-line {
    height: 5px;
    width: auto;
    background: var(--secondary-brand);
	flex-grow: 1;
}

.heading-row {
	margin-bottom: 1rem;
}

@media (min-width: 75em){
	.heading-row {
		margin-bottom: 1.5rem;
	}
	
	.home h2 {
		font-size: 3rem;
	}
}

@media (min-width: 99em){
	.home h2 {
		font-size: 3.5rem;
	}
}


/* Home - Banner */
.banner-slide {
	display: flex;
	flex-direction: column;
	height: auto;
	background: var(--dark-grey);
	padding-bottom: 2.5rem;
}

.banner-content {
	width: 100%;
	background: var(--dark-grey);
	color: var(--secondary-text);
	padding: 1rem;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

/*.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100% - 22.4px);
}*/

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

.banner-link {
	margin-top: 1rem;
	margin-bottom: 1rem;
    display: block;
}

.banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
	left: 1rem;
	bottom: 1rem;
    width: fit-content;
}

.swiper-pagination-bullet {
    width: .75rem;
    height: .75rem;
	background: rgba(255, 255, 255, 0.11);
	opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-brand);
}

.banner-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 .25rem;
}

.banner-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:first-of-type {
    margin-left: 0;
}


@media(min-width: 35em){
	.banner-img {
		aspect-ratio: 3/1;
	}
	.banner-content {
		padding: 1rem 5%;
		aspect-ratio: 4/1;
	}
	.banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
		left: 5%;
	}
}

@media (min-width: 62em){
	.banner-slide {
		flex-direction: row-reverse;
		aspect-ratio: 3/1;
		height: 33.333%;
		padding-bottom: 0;
	}
	.banner-img {
		width: 60%;
		aspect-ratio: unset;
	}
	.banner-content {
		width: 40%;
		aspect-ratio: unset;
		width: 80%;
    	margin: 0 auto 2rem;
		padding: 0;
	}
	
	.banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
		left: 4%; /* (40% - (40% * 80%)) / 2*/
		bottom: 2rem;
	}
	
	.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:first-of-type {
		margin-left: 0;
	}
	
	.swiper-pagination-bullet {
		width: .85rem;
		height: .85rem;
	}
	
	.banner-text {
		width: 80%;
   		margin: auto;
	}
}

@media (min-width: 75em){
	.banner-img {
		width: 70%;
	}
	.banner-content {
		width: 30%;
	}
	
	.banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
		left: 3%;
	}
	
	.banner-text p {
		font-size: 1.2rem;
	}
}

/* Home - Quicklinks */
.quicklinks {
	margin-bottom: 0;
}
.quicklink-wrapper {
	margin-bottom: 1.5rem;
}
.quicklink {
    color: var(--dark-font-color);
    text-align: center;
    display: block;
	padding: 1rem;
}

.quicklink i {
	font-size: 2rem;
	margin-bottom: .75rem;
}

.quicklink-text {
	font-weight: var(--font-medium);
}

.quicklink:hover,
.quicklink:focus {
	background: var(--primary-brand);
	color: white;
	filter: none;
}

@media (min-width: 75em){
	.quicklink-wrapper {
		margin-bottom: 0;
	}
	.quicklinks > .row {
		flex-wrap: nowrap;
	}
	
	.quicklink i {
		font-size: 2.5rem;
	}
}

/* Home - Events */
.event-item-wrapper {
    margin-bottom: 1rem;
}

.event-item {
    display: flex;
    align-items: center;
    color: var(--dark-font-color);
    font-weight: var(--font-medium);
	height: 100%;
}

.event-date-wrapper {
    background: var(--primary-brand);
    color: var(--primary-text);
    text-align: center;
    font-size: 1.2rem;
	padding: 0.5rem;
	width: 20%;
    aspect-ratio: 1/1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date-wrapper .month {
	font-size: .9rem;
    text-transform: uppercase;
}

.event-date-wrapper .day {
    font-size: 1.8rem;
}

.event-name {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
	width: 80%;
	height: 100%;
	border: 2px solid var(--light-grey);
	border-left: none;
	display: flex;
    flex-direction: column;
    justify-content: center;
	flex-grow: 1
}

.all-events,
.all-news {
	margin-top: 1rem;
    display: block;
}

@media (min-width: 75em){
	.home-events-wrapper {
        padding: 0 .5rem;
    }

    .event-item-wrapper {
        padding: 0 .5rem;
    }
	
	.event-date-wrapper {
		padding: 1rem;
		width: auto;
		min-width: 20%;
	}
}

/* Home - Spotlight */
.spotlight-image {
	background: var(--primary-brand-a);
	aspect-ratio: 16/9;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.spotlight-image img {
	aspect-ratio: 16/9;
	display: block;
}
.cover-logo {
    width: 30%;
    margin: auto;
	object-fit: contain;
}

.spotlight-date,
.spotlight-title {
    font-weight: var(--font-medium);
}

.spotlight-title {
    margin: 0.5rem 0;
}

.spotlight-text {
    padding: 1rem;
	position: relative;
	height: 280px;
}

.spotlight-text::after {
    content: "";
    background: #F8F8F8;
    width: 50%;
    height: calc(100% + 4rem);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.spotlight-desc {
	color: var(--medium-grey);
}

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

.spotlight-button {
	display: flex;
	margin-top: 3rem;
}

.spotlight-button-prev, 
.spotlight-button-next {
    top: unset;
    bottom: 0;
    color: var(--primary-text);
    background: var(--primary-brand);
    width: 2.5rem;
    height: 2.5rem;
}

.spotlight-button-prev {
	left: 0;
	background: #036B77;
}

.spotlight-button-prev.swiper-button-disabled,
.spotlight-button-next.swiper-button-disabled {
	/*background: #036B77;*/
	opacity: unset;
}

.spotlight-button-next {
	left: 2.5rem;
}

.spotlight-number {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 4rem;
    color: #EDEDED;
    font-weight: var(--font-black);
    display: inline-block;
    line-height: 3rem;
}

@media (min-width: 62em){
	.spotlight-item {
		display: flex;
		align-items: center;
		aspect-ratio: 16/9;
	}
	
	.spotlight-image img {
		aspect-ratio: unset;
		height: 100%;
	}
	
	.spotlight-title {
		font-size: 2rem;
	}
	
	.spotlight-text {
		width: 35%;
		padding: 0 2rem;
    	z-index: 2;
		height: 100%;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	
	.spotlight-text::after {
		content: none;
	}
	
	.spotlight-desc {
		line-height: 1.8;
	}
	
	.spotlight-image {
		width: 65%;
		height: 100%;
	}
	
	.spotlight-image::after {
		content: "";
		background: #F8F8F8;
		width: 17.5%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 65%;
		z-index: 1;
	}
	
	.spotlight-number {
		font-size: 7rem;
		line-height: 5rem;
	}
	
	.spotlight-button {
		margin-top: 0;
	}
	
	.spotlight-button-next {
		left: 2.5rem;
	}
	
	.spotlight-button-prev {
		left: 0;
	}
}

@media (min-width: 75em){
	.spotlight-item {
		aspect-ratio: 3/1;
	}
}

/* Home - News */
.news-item {
	position: relative;
	margin-bottom: 1rem;
}

.news-item-wrapper:hover,
.news-item-wrapper:focus {
	filter: none;
}

.news-item:hover .news-image::after,
.news-item:focus .news-image::after{
	background: rgba(0, 0, 0, 0.15);
}

.news-image {
    aspect-ratio: 1.8/1;
    background: var(--primary-brand-a);
	display: flex;
    justify-content: center;
    flex-direction: column;
}

.news-image img {
    aspect-ratio: 1.8/1;
}

.news-image::after {
    content: "";
    background: rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	transition: all .3s ease;
}

.news-title {
    position: absolute;
    bottom: 0;
    left: 1rem;
    color: white;
    font-weight: var(--font-medium);
	font-size: 1.2rem;
	z-index: 2;
	width: 85%;
}

.link-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
	z-index: 10;
    color: var(--secondary-text);
    background: var(--secondary-brand);
    width: 2.2rem;
    height: 2.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


@media (min-width: 62em){
	.news-item {
		margin-bottom: 1rem;
	}
	
	.link-arrow.mobile-only {
		display: none;
	}
}

/* Home - CTA 1 */
.cta-1-content {
    position: relative;
    aspect-ratio: 4/1;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.cta-1-content::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.24);
    position: absolute;
    top: 0;
    left: 0;
}

.cta-1-content h2,
.cta-1-content .link-arrow {
	z-index: 2;
}

@media (min-width: 62em){
	.link-arrow.larger {
		width: 3rem;
		height: 3rem;
		font-size: 1.2rem;
	}
}

/* Home - Photo Banner, Find a School */
.photo-row {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.photo-row::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.26);
    position: absolute;
    top: 0;
    left: 0;
}

.photo-content {
	position: relative;
	z-index: 2;
	padding-top: 2rem;
    padding-bottom: 2rem;
}

.school-wrapper {
	position: relative;
}

.school-image img {
	aspect-ratio: 4/1;
	display: block;
}

.school-title.mobile-only {
	background: var(--primary-brand);
    color: white;
    padding: 1rem;
}

.colour-block {
    background: var(--primary-brand);
    color: white;
    width: 35%;
	padding-left: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 48em){
	.photo-row {
		aspect-ratio: 6/1;
	}
	.photo-row:nth-of-type(even) .row{
		flex-direction: row-reverse;
	}

	.photo-row:nth-of-type(even) h2{
		text-align: right;
	}
}

@media (min-width: 75em){
	.photo-row p {
		line-height: 1.8;
	}
	
	.school-wrapper {
		display: flex;
	}

	.school-image {
		position: relative;
		width: 65%;
	}
	
	.school-image img {
		aspect-ratio: 7/1;
	}
	
	.school-image h2 {
		position: absolute;
		right: 0.5rem;
		top: 50%;
		transform: translateY(-50%);
		color: var(--primary-brand);
	}
}

/* Rich Text Template */
.page-content-inner {
	margin-top: 1rem;
}
.page-title {
    margin: 0 0 1rem;
}

.page-template h2,
.page-template h3,
.page-template h4,
.page-template h5,
.page-template h6 {
	color: var(--primary-brand);
}

.page-template .news-title {
	color: white;
	width: 85%;
}

.page-content-inner ul,
.page-content-inner ol {
	list-style: revert;
	padding-left: 1rem;
}

@media (min-width: 62em){
	.page-content-inner {
		margin-left: 1rem;
		margin-top: 2rem;
	}
	
	.no-side-nav .page-content-inner {
		margin-left: 0;
	}
}

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

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

.collapsible-box-description { 
	display: none;
	padding: 1rem 0.5rem;
}

.collapsible-box-title {
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    padding: .5rem;
	margin: 0;
	cursor: pointer;
}

.collapsible-box-title i {
	margin-right: .5rem;
}

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

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

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

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

/* Landing Page Template */
.row.landing {
    row-gap: 1rem;
    flex-wrap: wrap;
	list-style: none;
	padding-left: 0;
	margin-top: 1rem;
}

.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;
}


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

/* News, Event Article */
.news-article .btn-link {
	display: block;
	margin-bottom: .5rem;
}

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

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

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

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

.content-row.border-bottom {
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  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;
}

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

/* Contact Page Template */
.contact-label {
    font-weight: var(--font-medium);
    margin: 0;
}

address {
	font-style: normal;
}

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

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

.contact-info {
	margin-bottom: 1rem;
}

/* Side Navigation */
.sidebar {
	font-weight: var(--font-medium);
    background: var(--dark-grey);
	color: white;
	padding: 1rem;
	margin-top: 1rem;
}

.sidebar-wrapper a {
	color: white;
}
.nav-secondary {
	display: none;
	margin-top: .5rem;
}
.cookie {
    padding-bottom: 0.5rem;
}

.cookie a {
    display: flex;
    align-items: center;
}

.secondary-nav-item.active,
.secondary-nav-item.current {
    font-weight: var(--font-bold);
}

.secondary-nav-item.current {
	font-size: 1.1rem;
}

.secondary-nav-item {
    padding-bottom: 0.5rem;
	transition: all .3s ease;
}

.secondary-nav-item:last-of-type {
	padding-bottom: 0;
}

.secondary-nav-item.active a {
	color: var(--secondary-brand);
}

.cookie:hover a,
.cookie:focus a,
.secondary-nav-item:hover a,
.secondary-nav-item:focus a{
    color: var(--secondary-brand);
	filter: none;
}

.nav-secondary-ul {
    margin: 0 0 0 .5rem;
    font-weight: var(--font-regular);
}

.current-page {
    display: flex;
    align-items: center;
    gap: 0.25rem;
	cursor: pointer;
}

@media (min-width: 62em){
	.nav-secondary {
		display: block!important;
		margin: unset;
	}
	.sidebar {
		padding: 3rem 2rem;
		margin-top: 0;
	}
	.current-page {
		display: none;
	}
	.cookie i {
		font-size: 1rem;
	}
	.cookie a {
		font-size: .9rem;
		font-weight: var(--font-regular);
	}
}

/*CM Calendar*/
#calendar {
	font-size: 16px;
}

#calendar a {
	color: var(--dark-font-color);
}

#calendar .fc-daygrid-event-harness a {
	color: var(--primary-brand);
}

#calendar .fc-daygrid-event-harness .fc-h-event {
	background: var(--primary-brand);
	border-color: var(--primary-brand);
}
#calendar .fc-view-harness {
  background: #fff;
  margin-bottom: 2rem;
}

#calendar .fc-col-header {
  margin-bottom: 0;
}

/*Calendar*/
.fc-scrollgrid-sync-table {
	margin-bottom: 0;
}

.fc-col-header-cell-cushion,
.fc-daygrid-day-number {
  color: inherit;
}

.fc-h-event .fc-event-title-container,
.fc-daygrid-dot-event .fc-event-title {
  white-space: normal;
}

.fc-daygrid-dot-event {
  align-items: flex-start!important;
  flex-wrap: wrap;
} 

.fc-daygrid-event-dot {
  margin: 3px 4px!important;
}

.fc-daygrid-block-event .fc-event-time {
  display: none;
}

.fc-daygrid-dot-event .fc-event-title {
  padding: 0;
}

#calendar .fc-daygrid-event-dot {
    border-color: var(--primary-brand);
}
#mobile-calendar-list ul {
  padding: 0 0 1rem;
  margin: 0;
  list-style: none;
}

#mobile-calendar-list h5 {
  margin-bottom: .5rem;
}

#mobile-calendar-list ul li {
  padding: 5px 0;
}

#mobile-calendar-list ul li a {
  padding: 5px 0;
}

#mobile-calendar-list .event-day {
	padding: 4px;
	font-size: 16px;
	background: var(--primary-brand);
}

#mobile-calendar-list .event-time {
    color: var(--primary-brand);
}

/*Responsive Calendar Styles*/
@media(max-width: 62em) {
  #calendar {
    display: none;
  }
  
  .list-view-link {
    display: none!important;
  }

}

@media(min-width: 62em) {
  .list-view-link {
    display: none;
    padding: 1rem 0;
    margin-top: 2.5rem;
    text-align: right;
  }

  .list-view-link a {
    color: inherit;
      line-height: 1;
  }

  .list-view-link i {
    vertical-align: top;
  }  

  #mobile-calendar-list {
    padding-top: 3rem;
  }   
}

/* Featured Image */
.featured-img-bg {
	width: 100%;
}

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

@media (min-width: 62em) {
	.featured-img-bg img {
		aspect-ratio: 4/1;
	}
}

/* Tables with icons and text */
.icons-table img {
    width: 200px;
    display: block;
	margin: 1rem auto;
}

.icons-table td {
	width: 33.333%;
    text-align: center;
}

.icons-table .list-row ul {
    width: fit-content;
    margin: auto;
}

.icons-table .list-row td {
    text-align: left;
}