:root {
	--primary-brand: #005096;
	--secondary-brand: #FFCE00;
	--light-grey: #F3F3F3;
	--dark-font-color: #35393C;
    --international-trip: #118134;
    --faith: #ff3700;
    --summer-school: #861a81;

	--font-regular: 400;
	--font-semibold: 600;
	--font-bold: 700;
}

/* Globally used classes */
.flex-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
}

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

.flex-row-between {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.mt0 {
	margin-top: 0;
}

.mb0 {
	margin-bottom: 0;
}

.no-margin {
	margin: 0;
}

.text-center {
	text-align: center;
}

.emphasis {
	color: var(--secondary-brand);
	font-size: 110%;
}

.row-gap {
	row-gap: 1rem;
}

.content-container,
.container.pad-side,
.side-container {
	padding: 0 1rem;
	background: none;
}

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

img {
	object-fit: cover;
	display: block;
}

section {
	margin-bottom: 2rem;
}

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

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

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

@media (min-width: 62em){
	.sidebar {
		margin-top: 0;
	}

	.content-container,
	.container.pad-side {
		padding: 0 7.5%;
	}

	.page-content-inner {
		margin-left: 2rem;
		margin-top: 3rem;
	}

	.side-container {
		padding-left: 0;
		padding-right: 7.5%;
	}

	.container.pad-side {
		margin-top: 3rem;
		padding-top: 2rem;
	}
}

@media (min-width: 75em) {
	section {
		margin-bottom: 3rem;
	}
}



/*Primary Action*/
a {
	color: var(--primary-brand);
}

.btn-outline {
	display: block;
	width: fit-content;
	color: white;
	border: 3px solid var(--secondary-brand);
	padding: 0.5rem 0.75rem;
	border-radius: 5px;
	filter: none;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	font-size: .9rem;
}

.btn-outline.dark-font {
	color: var(--dark-font-color);
}

.btn-outline:hover, .btn-outline:focus {
	padding: 0.5rem 0.75rem;
	filter: none;
	background: var(--secondary-brand);
}

.btn-outline-white {
	border-color: white;
	color: currentColor;
}

.btn-outline-white:hover, .btn-outline-white:focus {
	filter: none;
	background: white;
}

.btn-primary,
.primary-action,
.primary-action a {
	color: #4FC0A6;
	border-color: #4FC0A6;
}

.primary-action-bg {
	background-color: #4FC0A6;
	color: #fff;
}

.primary-action-bg :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

.primary-action-fill {
	fill: #4FC0A6;
}

.bg-primary {
	background: var(--primary-brand);
	color: white;
}

.bg-grey {
	background: var(--light-grey);
}

.bg-dark {
	background: var(--dark-font-color);
	color: white;
}

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

/*Secondary Action*/
.btn-secondary,
.secondary-action,
.secondary-action a {
	color: #FFCE00;
	border-color: #FFCE00;
}

.secondary-action-bg {
	background-color: #D63D24;
	color: #fff;
}

.secondary-action-bg :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

.secondary-action-fill {
	fill: #D63D24;
}

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

/*Primary Brand*/
.primary-1-bg {
	background-color: #005096;
	color: #fff;
}

.primary-1-bg :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

.primary-brand-fill {
	fill: #C02B2D;
}

/*Secondary Brand*/
.primary-2-bg {
	background-color: #35393C;
	color: #fff;  
}

.primary-2-bg :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

/* Header & Footer */
.top-city {
	margin-right: 5px;
}

.top-postal {
	margin-right: 30px;
}

.top-phone {
	gap: 3px;
}

.district-footer-logo {
	width: 242px;
	margin-left: 0;
}

#op-services img {
	margin: auto;
}

#main-nav ul li.action a {
	background: var(--secondary-brand);
	border-radius: 5px;
	padding: 8px 10px;
}

.top-social svg {
	width: 16px;
	fill: rgba(255, 255, 255, 0.65);
}

.top-social li a:hover svg, 
.top-social li a:focus svg {
	fill: rgba(255, 255, 255, 1);
}

.main-footer {
	margin-top: 0;
	padding-bottom: 20px;
}

.footer-credit a {
	color: var(--primary-brand);
}

.contact-numbers {
	word-break: break-word;
}

.contact-numbers.phone {
	margin-bottom: 1rem;
}

@media (max-width: 62em){
	#nav-app {
		width: 100%;
		display: flex;
		justify-content: flex-end;
	}

	#calendar {
		display: flex;
	}

	.fc .fc-toolbar-title {
		font-size: 1.2rem;
		margin: 0 1rem;
	}
}

@media (min-width: 48em){
	.footer-credit {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

@media (min-width: 62em){
	main {
		margin-top: 116px;
	}
	.main-footer {
		padding-bottom: 100px;
	}
}

@media (min-width: 99em){
	main {
		margin-top: 157px;
	}
}

/* Menu drodpown */
#main-nav .subpage-ul {
	display: none;
	background: #f1f1f1;
	color: var(--dark-font-color);
}


#main-nav .subpage-ul li {
	display: block;
	text-align: left;
	width: fit-content;
}

#main-nav .main-dropdown {
	position: relative;
}

#main-nav .subpage-ul li a {
	padding: 0;
}

#main-nav .subpage-ul li a:hover, 
#main-nav .subpage-ul li a:focus {
	background: none;
	filter: none;
	color: var(--primary-brand);
}

@media(max-width: 991px){
	#main-nav {
		overflow: auto;
		height: 100vh;
	}
	#main-nav ul {
		position: static;
		transform: none;
	}

	#main-nav > ul {
		margin: 6rem .5rem;
	} 

	#main-nav .subpage-ul {
		padding: 1rem 0.5rem 0.25rem;
		margin-top: 0.5rem
	}

	#main-nav .subpage-ul li {
		padding: 0 0.5rem 0.75rem;
	}

	#main-nav .main-dropdown {
		padding: 0.5rem;
	}

	.nav-link {
		justify-content: space-between;
	}

	.hamburger-icon {
		right: 0;
	}

	.logo-menu-wrapper {
		padding: 0 1rem;
	}
}

@media(min-width:62em){

	.nav-link-icon {
		display: none;
	}

	.school-body .main-header .logo img {
		height: 100px;
	}

	.school-body #main-nav {
		padding: 0;
	}

	.main-nav-wrapper {
		align-self: stretch;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.main-menu-wrapper, 
	#main-nav {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	#main-nav > ul {
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 1rem;
	}

	#main-nav .main-dropdown {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 0;
	}

	#main-nav .subpage-ul {
		position: absolute;
		width: 300px;
		left: 0;
		right: 0;
		z-index: 11;
		top: 100%;
		display: block!important;
		transition: all .3s ease-in-out;
		transform: scaleY(0);
		transform-origin: top;
		opacity: 0;
		padding: 0.5rem;
		padding-left: 20px;
	}

	#main-nav li:nth-last-of-type(2) .subpage-ul{
		left: auto!important;
	}

	#main-nav .main-dropdown:hover .subpage-ul, 
	#main-nav .subpage-ul:hover {
		transform: scaleY(1);
		opacity: 1;
	}
}


/* Home */
.banner-slide {
	position: relative;
}

.banner-slide::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #35393C 0% 0% no-repeat padding-box;
	opacity: 0.3;
}

.banner-text {
	position: absolute;
	left: 3rem;
	bottom: 2rem;
	z-index: 2;
	color: white;
	width: 80%;
}

.banner-text h1 {
	margin-bottom: 0.5rem;
	font-size: 2rem;
	color: white;
}

.banner-text h2 {
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	font-style: italic;
}

.banner-text p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.banner-text .btn {
	margin-top: 2rem;
	display: block;
	width: fit-content;
}

.banner-img {
	aspect-ratio: 4/3;
	width: 100%;
}

.banner .banner-button-next:after, 
.banner .banner-button-prev:after {
	font-size: 1.2rem;
	color: white;
}

.banner .swiper-horizontal>.swiper-pagination-bullets, 
.banner .swiper-pagination-bullets.swiper-pagination-horizontal {
	right: 7.5%;
	left: auto;
	bottom: 3.5rem;
	text-align: right;
}

.banner .banner-pagination .swiper-pagination-bullet {
	background: white;
	opacity: .5;
	width: 16px;
	height: 16px;
	margin: 0 4px;
}

.banner .banner-pagination .swiper-pagination-bullet-active {
	background: white;
	opacity: 1;
}

.banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
	margin: 0 4px;
}

.cta1-section h3 {
	color: white;
    margin: 0;
    font-size: 26px;
}

.cta1-section a {
    font-size: 2rem;
    color: white;
}

.cta3-section {
	padding: 2rem 1rem;
}

.cta1-section .btn,
.cta3-section .btn {
	margin: auto;
}

.cta2-img {
	position: relative;
	padding-bottom: 56.25%;
}

.cta2-img iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
}

.cta2-content-wrapper {
	padding: 2rem 1rem;
}

.learning-section h3 {
	margin-bottom: 1.5rem;
}

.learning-img-swiper {
	max-height: 700px;
}

.learning-text-swiper {
	background: var(--light-grey);
	border-radius: 5px 5px 0 0;
}

.learning-text-swiper,
.learning-text-swiper .swiper-wrapper {
	height: fit-content!important;
}

.learning-text-swiper .swiper-slide {
	/*height: calc(100% / 6)!important;*/
	padding: 1.5rem 1rem;
	height: auto!important;
	border-bottom: 1px solid #D9D9D9;
}

.learning-text-swiper .learning-content {
	display: none;
}

.learning-text-swiper .btn {
	margin-top: 1rem;
}

.learning-text-swiper .learning-content p {
	padding-top: 1rem;
}

.learning-text-swiper .swiper-slide-thumb-active {
	opacity: 1;
	background: var(--primary-brand);
	color: white;
}

.learning-text-swiper h4 {
	font-size: 24px;
	font-family: basic-sans, sans-serif;
	font-weight: 600;
}

.learning-text-swiper .swiper-slide-thumb-active h4 {
	color: white;
}

.learning-text-swiper .swiper-slide-thumb-active .learning-content {
	display: block;
}

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

.learning-button-next, 
.learning-button-prev {
	background: rgba(53, 57, 60, 0.9);
	color: white;
	width: 44px;
}

.learning-button-next {
	bottom: 0;
	left: 0;
	top: unset;
}

.learning-button-prev {
	bottom: 44px;
	left: 0;
	top: unset;
}

.learning-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.learning-text-slide {
	cursor: pointer;
}

.cta3-section {
	position: relative;
}

.cta3-content {
	position: relative;
	z-index: 10;
}

.at-sign {
	position: absolute;
	left: 0.5rem;
	top: 0;
	height: 95%;
}

/* News */

.home .news-section {
	background: #f8f9f9;
	padding-top: 80px;
	padding-bottom: 100px;  
}

.home .news-section .container {
	position: relative;
}

.news-wrapper {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	height: 100%;
}

.news-item {
	display: block;
	margin-bottom: 3rem;
	background: #fff;
	padding: 0 0 1rem 0;
	border-radius: 5px;
}

/* Dates, cover images */
.publish-date {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 11px;
	margin-bottom: 10px;
	color: #989898;
}

.publish-date i {
	font-size: 20px;
	vertical-align: middle;
}

.cover-image img {
	max-width: 100%;
	max-height: 600px;
	margin-bottom: 20px;
}


.home .news-section {
	background: none;
	padding-top: 0;
	padding-bottom: 0;
}

.news-item {
	background: var(--light-grey);
	margin: 0;
	padding: 0;
	height: 100%;
}

.news-title {
	font-weight: 600;
	color: var(--dark-font-color);
	font-size: 1.2rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.news-content {
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	line-height: 1.4;
	height: 100%;
}

.news-item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
}

.news-item .img-wrapper,
.news-item .img-wrapper.no-cover {
	width: 100%;
	border-radius: 5px 5px 0 0;
	height: auto;
	aspect-ratio: 1/1;
}

.news-item .news-description {
	width: 100%;
	margin: 0;
	padding: 1rem 0 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-item .format-date {
	color: var(--dark-font-color);
	text-transform: none;
	font-weight: 400;
	font-size: .9rem;
	margin: 0;
}

.news-date-row {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: .9rem;
}

.news-item svg {
	margin: 0;
}

.news-section .btn-outline {
	color: var(--dark-font-color);
}

.events-section .events-text {
	padding: 2rem 1rem;
}

.events-section .events-image {
	aspect-ratio: 16/9;
}

.events-text h3 {
	color: white;
}

.format-event-time {
	font-size: .8rem;
	font-weight: var(--font-regular);
}

.event-item {
	display: flex;
	align-items: center;
	color: var(--dark-font-color);
	font-weight: 600;
	margin-bottom: 1rem;
	border-radius: 5px;
	height: 100%;
}

.event-date-wrapper {
	background: var(--secondary-brand);
	color: var(--dark-font-color);
	text-align: center;
	font-weight: 600;
	padding: 0.5rem;
	line-height: 1.2;
	border-radius: 5px 0 0 5px;
	width: 50px;
	height: 50px;
}

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

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

.event-name {
	background: #003F76;
	color: white;
	padding: 0 1rem;
	border-radius: 0 5px 5px 0;
	border-left: none;
	width: calc(100% - 50px);
	height: 50px;
}

.event-name .card-description {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.events-intro {
	margin-bottom: 1rem;
}

.home-events-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1rem;
}

.event-item-wrapper {
	width: 100%;
	height: 50px;
}

.fb-item {
	background: var(--light-grey);
	display: block;
	border-radius: 5px;
	padding: 1.5rem;
	color: var(--dark-font-color);
}

.fb-desc {
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.4;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.fb-content i {
	font-size: 1.2rem;
	color: var(--primary-brand);
}

.fb-heading{
	margin-bottom: 1.5rem;
}

.fb-heading .btn-outline {
	color: currentColor;
}



.fb-wrapper {
	row-gap: 1rem;
}

/*.news-item {
width: 100%;
align-self: stretch;
height: auto;
display: flex;
flex-direction: column;
}*/

.banner2 {
	padding: 3rem 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.cta1-content {
    padding: 2rem 1rem;
}

.cta1-content.bg-secondary h3,
.cta1-content.bg-secondary a {
    color: var(--dark-font-color);
}

@media (max-width: 48em){
	.banner .swiper-horizontal>.swiper-pagination-bullets, 
	.banner .swiper-pagination-bullets.swiper-pagination-horizontal {
		right: 1rem;
		bottom: 1rem;
	}

	.banner .banner-pagination .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.banner-text {
		left: 0;
		right: 0;
		bottom: 3rem;
		width: 100%;
		text-align: center;
	}

	.banner-text h1 {
		max-width: 80%;
		margin: 0 auto 1rem;
	}

	.banner-text h2 {
		max-width: 80%;
		margin: 0 auto 1rem;
	}

	.banner-text .btn {
		margin: auto;
	}

	.swiper-vertical {
		touch-action: unset!important;
	}

	.learning-img-swiper {
		max-height: 300px;
	}

	.learning-img-swiper,
	.learning-img-slide {
		height: 300px!important;
	}

	.learning-text-swiper .swiper-slide {
		padding: 1rem;
	}

	.learning-text-swiper h4 {
		font-size: 1.2rem;
	}

	.fb-desc {
		font-size: 1rem;
		line-height: 1.3;
	}

	.fb-item {
		padding: 1rem;
	}
}

@media (max-width: 500px) {
	.banner-text h1 {
		font-size: 1.5rem;
	}

	.banner-text .btn {
		font-size: .8rem;
	}
}

@media (min-width: 48em){
	.event-item-wrapper {
		width: calc((100% - 1rem) / 2);
	}

	.banner-img {
		aspect-ratio: 100/37.5;
	}

	.learning-text-swiper {
		border-radius: 5px 0 0 5px;
	}

	.news-item {
		width: calc((100% - 1.5rem) / 2);
	}
}

@media (min-width: 62em){

	.events-section {
		display: flex;
		align-items: center;
	}

	.events-section .events-image {
		width: 40%;
		aspect-ratio: 4/3;
	}

	.events-section .events-text {
		flex-grow: 1;
		padding: 2rem 3%;
	}

	.event-item-wrapper {
		width: calc((100% - 2rem) / 3);
	}

	.banner2 p {
		max-width: 80%;
		margin: auto;
	}

	.news-item {
		width: calc((100% - 3rem) / 3);
	}

	.cta1-content-wrapper {
		display: flex;
		align-items: center;
		/* gap: 2rem; */
		justify-content: center;
		width: 100%;
        margin: auto;
		background: var(--primary-brand);
	}

	.cta1-content:first-of-type {
		margin-bottom: 0;
	}

	.cta1-content {
		width: 50%;
        padding: 2rem;
	}

}

@media (min-width: 75em) {
	.banner-img {
		aspect-ratio: 100/37.5;
	}
	.banner-text {
		left: 7.5%;
		bottom: 20%;
		max-width: 60%;
	}

	.banner-text h1 {
		font-size: 3rem;
	}

	.banner-text h2 {
		font-size: 1rem;
	}

	.cta3-section {
		padding: 3rem 1rem;
	}

    .cta1-section {
        padding: 0;
    }

    .cta1-content {
        padding: 3rem 4rem;
	}

	.cta2-section {
		display: flex;
		align-items: center;
		height: 100%;
	}

	.cta2-img {
		align-self: stretch;
		width: 50%;
	}
	.cta2-content-wrapper {
		align-self: stretch;
		width: 50%;
		padding: 0;
	}

	.cta2-content {
		width: 85%;
		margin: 2rem auto;
	} 

	.cta2-img {
		padding-bottom: 28.125%;
	}

	.cta3-content {
		width: 60%;
		margin: auto;
	}

	.news-wrapper {
		margin-top: 0;
	}

	.news-item {
		width: calc((100% - 4.5rem) / 4);
	}

}

/* Rich Text Template */
.featured-image img {
	aspect-ratio: 4/1;
	max-height: 300px;
	width: 100%;
}

.featured-image-wrapper {
	position: relative;
	aspect-ratio: 16/9;
	max-height: 300px;
	width: 100%;
}

.featured-image {
	position: relative;
	aspect-ratio: 16/9;
	max-height: 300px;
	width: 100%;
}

.featured-image-wrapper.no-img {
	background: #005096cc;
}

.featured-image-wrapper .page-title {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 10;
	transform: translateY(-50%);
	color: white;
	text-align: center;
}

.featured-image-wrapper::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #35393C 0% 0% no-repeat padding-box;
	opacity: 0.3;
}

.featured-image-wrapper.no-img::after {
	content: none;
}

.watermark {
	position: absolute;
	bottom: 0.5rem;
	right: 0.5rem;
	z-index: 1;
	max-width: 150px;
	width: 20%;
}

.page-content-inner {
	margin-top: 1rem;
}
.page-title {
	margin: 0 0 1rem;
}

.page-content-inner ul {
	list-style: unset;
	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;
	}

	.featured-image-wrapper {
		aspect-ratio: 4/1;
	}

	.featured-image {
		aspect-ratio: 4/1;
	}

	.watermark {
		bottom: 1rem;
		right: 1.5rem;
	}
}

/* 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;
	margin: 1rem 0.5rem;
}

.collapsible-box-title {
	border-color: var(--primary-brand);
	background-color: var(--light-grey);
	cursor: pointer;
}

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

.collapsible-bottom-icon {
	cursor: pointer;
}
.editor details summary {
    border-color: var(--primary-brand);
	background-color: var(--light-grey);
}
.editor details summary i {
    color: var(--primary-brand);
}

/* Side Navigation */
#nav-secondary {
	font-size: 1rem;
	text-transform: none;
	letter-spacing: 0;
}

#nav-secondary ul li {
	padding: 0.25rem 0;
}

.sidebar {
	font-weight: var(--font-semibold);
	background: var(--primary-brand);
	color: white;
	padding: 1rem;
	margin-top: 1rem;
}

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

.cookie a {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-weight: var(--font-bold);
}

.cookie a::before {
	content: none;
}

.secondary-nav-item.active,
.secondary-nav-item.current {
	color: var(--secondary-brand);
	font-style: unset;
	opacity: 1;
}

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

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

#nav-secondary .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);
}

#nav-secondary ul.secondary-nav-ul.show-children, 
.main-dropdown li.show-children, 
li.secondary-nav-item.indented {
	margin-left: 20px;
}

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

@media (max-width: 62em){
	#nav-secondary, #nav-secondary ul{
		background: unset;
		width: 100%;
		min-height: unset;
		transform: unset;
		transition: unset;
		position: static;
		z-index: unset;
		text-align: left;
	}

	#nav-secondary .cookie {
		display: block;
	}
}

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

/* Article Template */
.article-template .btn {
	margin-bottom: 2rem;
}

.article-template .btn-outline {
	color: var(--dark-font-color)
}

.article-template .sidebar {
	background: var(--light-grey);
}

.article-template .news-article {
	margin: 0 1rem;
}

.article-template .event-date {
	display: flex;
}

/* Calendar */
@media (min-width: 62em) {
	.list-view-link {
		float: unset; 
		text-align: right;
	}
}

/* Calendar Filter */	
.calendar-filters-container {
	display: block;
	margin-bottom: 2rem;
	background: var(--light-grey);
	padding: 1.5rem;
}

.calendar-filters-container p {
	margin-top: 0;
}

.calendar-filters-heading h3 {
	margin-top: 0;
	font-size: 1.375rem;
}

.target-calendar-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.filter-checkbox-wrapper {
	padding: 0.25rem .5rem;
	border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-checkbox-wrapper label {
	text-transform: capitalize;
}

.filter-checkbox-wrapper:first-of-type {
	padding-left: 0;
}

/* Calendar Legend */
.filter-checkbox-wrapper.--international-trip {
	background: var(--international-trip);
	color: white;
}

#calendar .fc-daygrid-event.--international-trip .fc-daygrid-event-dot,
#calendar .fc-event.--international-trip .fc-list-event-dot,
#calendar .fc-daygrid-event.--international-trip {
	border-color: var(--international-trip);
	color: var(--international-trip);
}

#calendar .fc-daygrid-event.--international-trip .fc-event-main{
	background: var(--international-trip);
}

#calendar .fc-v-event.--international-trip {
	background: var(--international-trip);
	border-color: var(--international-trip);
}

.filter-checkbox-wrapper.--faith {
	background: var(--faith);
	color: white;
}

#calendar .fc-daygrid-event.--faith .fc-daygrid-event-dot,
#calendar .fc-event.--faith .fc-list-event-dot,
#calendar .fc-daygrid-event.--faith {
	border-color: var(--faith);
	color: var(--faith);
}

#calendar .fc-daygrid-event.--faith .fc-event-main{
	background: var(--faith);
}

#calendar .fc-v-event.--faith {
	background: var(--faith);
	border-color: var(--faith);
}

.filter-checkbox-wrapper.--summer-school {
	background: var(--summer-school);
	color: white;
}

#calendar .fc-daygrid-event.--summer-school .fc-daygrid-event-dot,
#calendar .fc-event.--summer-school .fc-list-event-dot,
#calendar .fc-daygrid-event.--summer-school {
	border-color: var(--summer-school);
	color: var(--summer-school);
}

#calendar .fc-daygrid-event.--summer-school .fc-event-main{
	background: var(--summer-school);
}

#calendar .fc-v-event.--summer-school {
	background: var(--summer-school);
	border-color: var(--summer-school);
}


/* Most Popular Template */
.content-box img {
	aspect-ratio: 1/1;
	width: 100%;
}

/* 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 Filter */
.filter-group {
	padding: 0.25rem 0.75rem;
	border-radius: 5px;
	color: white;
	background: #005096cc;
	width: fit-content;
	display: flex;
	gap: 0.25rem;
}

.filter-group label {
	text-transform: capitalize;
	margin-left: .25rem;
	font-size: .8rem;
}

.filter-checkboxes {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.filter-wrapper {
	border-radius: 5px;
	background: var(--light-grey);
	padding: 1rem;
	margin-bottom: 1.5rem;
}

/* News Tag Legend */
.news-tag::after {
	color: var(--primary-brand);
}

.news-tag.--faith::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f654";
}

.news-tag.--international-trip::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\e22d";
}

.news-tag.--summer-school::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f02d";
}

.checkbox-label::before {
	margin-right: 5px;
}

.checkbox-label.faith::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f654";
}

.checkbox-label.international-trip::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\e22d";
}

.checkbox-label.summer-school::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f02d";
}

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

.editor iframe {
    min-height: unset;
}

.sidebar-item h3 {
	color: white;
}

.search-type {
	color: var(--primary-brand);
}