:root {
	--district:  #2367B0;
	--primary-brand: #99C12B;
	--secondary-brand: #0FACC8;
	--career-life: #292962;
	--dual-credit: #99C12B;
	--header-height: 2.2rem;
}

/* Heading Colour */
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
	color: var(--primary-brand);
}

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

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

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

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

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

.btn-district {
	background: var(--district);
}

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

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

.mobile-only {
	display: block;
}

.desktop-only {
	display: none;
}

@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%;
	}
	
	.container.pad-side {
		margin-top: 3rem;
	}
}

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

}

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

.landing-wrapper {
    background: #292962;
    height: 100vh;
	color: white;
}

.sd23-logo {
	position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    margin: auto;
    width: 30%;
	z-index: 100;
}

.landing-col.dc {
	background: transparent linear-gradient(180deg, #0FACC8 0%, #99C12B 100%) 0% 0% no-repeat padding-box;
}

@media (min-width: 75em) {
	.landing-wrapper {
		display: flex;
		align-items: center;
		justify-content: space-around;
	}
	
	.landing-col {
		height: 100vh;
	}
	
	.landing-col.cl {
		width: 45%;
	}
	
	.landing-col.dc {
		width: 55%;
		clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	
	.logo-title {
		margin: 8rem auto 0;
	}
	
	.landing-col.dc .btn {
		margin-left: auto;
	}
}

/* Top Header */
.search-bar-wrapper {
	position: static;
}

.modal-info-content {
	margin-top: 2.5rem;
}

.modal-wrapper .close-icon {
    right: 1rem;
    top: 1rem;
}

.top-header a {
	color: white;
	font-size: .8rem;
}

.social-wrapper {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin: 0;
	position: relative;
	padding: 0 .5rem;
}

.option-btn {
	position: relative;
	padding-right: 8px;
}

.option-btn[data-type="account"] span {
    font-size: .6rem;
    padding-left: 8px;
    opacity: 1;
}

.option-btn[data-type="search"],
.option-btn[data-type="translate"],
.option-btn[data-type="services"]{
    padding-left: 8px;
}

.option-btn:last-of-type {
	padding-right: 0;
}

.option-btn::after {
	content: "";
	width: 1px;
	height: 25px;
	position: absolute;
	right: 0;
	top: 50%;
	transform:translateY(-50%);
	background: rgba(255, 255, 255, 0.6);
}

.option-btn:last-of-type::after {
	content: none;
}

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

.social-wrapper svg {
	fill: white
}

.contact-link {
	padding-left: .5rem;
}

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

.nav-app-icons {
	gap: 0;
}

.nav-app-icons .option-btn a.flex-row {
	flex-direction: row;
}

#search-form {
	position: relative;
}

#search-term {
    width: 100%;
	border: none;
	padding: 0.75rem 0.75rem 0.75rem 2.2rem;
}

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

.switch-site {
	padding: 0 0.5rem 0 1.25rem;
    clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
	display: flex;
    flex-direction: column;
    justify-content: center;
	display: none;
}

.switch-site.career-life {
	background: var(--career-life);
}

.switch-site.dual-credit {
	background: var(--dual-credit);
}

.nav-app-wrapper,
.nav-app > ul {
    background: var(--primary-brand);
}

@media (min-width: 75em) {
	.top-header,
	.switch-site,
	#search-term,
	.nav-app-wrapper,
	.nav-app > ul  {
		height: var(--header-height);
	}
	.social-wrapper {
		width: fit-content;
		padding: 0 1rem;
	}
	
	.contact-link {
		flex-grow: 1;
	}
	
	.search-bar-wrapper {
		width: 30%;
	}
	
	.switch-site {
		display: flex;
	}
	
	.top-header {
		justify-content: flex-start;
	}
	
	.social-wrapper::after,
	.option-btn::after {
		content: "";
		width: 1px;
		height: 25px;
		position: absolute;
		right: 0;
		top: 50%;
		transform:translateY(-50%);
		background: rgba(255, 255, 255, 0.6);
	}

}

/* Main Header */
.logo-wrapper {
	display: flex;
	align-items:center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.site-logo {
	display: inline-block;
    width: auto;
    height: 3.5rem;
}

.site-logo.district {
	margin-right: 1rem;
}

.main-header {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

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

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

.main-dropdown-menu {
	display: none;
	left: 0;
    top: calc(100% + 1rem);
	min-width: 300px;
	z-index: 100;
}

.main-dropdown:nth-last-of-type(2) .main-dropdown-menu,
.main-dropdown:last-of-type .main-dropdown-menu {
	right: 0;
	left: auto;
}

.main-nav {
	display: none;
}

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

.main-dropdown a {
	gap: .25rem;
}

.main-dropdown i {
    font-size: 1rem;
}

@media (max-width: 1199px){
	.main-nav {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		background: white;
		height: 100vh;
		z-index: 100;
		padding-top: 4.5rem;
	}
	
	.menu-icon {
		cursor: pointer;
	}
	
	.menu-close {
		left: auto;
		right: 0;
		background: none;
		position: absolute;
		top: 1rem;
		right: 1rem;
	}
	
	.main-nav .main-dropdown {
		margin-bottom: 1.5rem;
	}
	
	.main-dropdown a.flex-row {
		justify-content: space-between;
	}
	
	.main-dropdown-menu {
		margin: .5rem 0;
		min-width: unset;
	}
}

@media (max-width: 48em) {
	.site-logo {
		height: 2rem;
	}
}

@media (min-width: 75em) {
	.main-header {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
	.menu-icon {
		display: none;
	}
	
	.main-nav {
		display: block!important;
		padding: 0;
	}
	
	.main-ul {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 1rem;
	}
	
	.menu-close {
		display: none;
	}
	
}

/* Footer */
footer .social-wrapper::after {
	content: none;
}

.footer-col-2 h3 {
	font-size: 1rem;
}

@media (min-width: 75em) {
	.footer-top {
		align-items: center;
	}
	
	footer .social-wrapper {
		width: 100%;
	}
	
	.footer-logo {
		max-width: 16rem;
	}
}

/* Home - Banner */
.home section {
	margin-bottom: 0;
}

.banner-slide {
	position: relative;
}

.banner-slide::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	opacity: 0.8;
}

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

.banner-text h1 {
	font-weight: var(--font-bold);
	margin-bottom: 0.5rem;
	font-size: 2rem;
}

.banner-text p {
	font-weight: var(--font-semibold);
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

.banner .banner-button-next:after, 
.banner .banner-button-prev:after {
    font-size: 1rem;
    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: none;
	border: 1px solid white;
	opacity: 1;
	width: 16px;
	height: 16px;
	margin: 0 4px;
}

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

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

.about-section {
	color: white;
	font-weight: var(--font-semibold);
}

.about,
.cta1 {
	width: 100%;
	padding: 2rem 1rem;
}

.cta1 .btn {
	margin: 1rem auto 0;
}

.cta2-img {
	display: block;
	width: 100%;
	aspect-ratio: 1244/604;
}

.icon-links {
	padding: 2rem 0;
}

.icon-links .row {
	row-gap: 1.5rem;
}

.circle-icon {
    border: 1px solid white;
    width: fit-content;
    border-radius: 50%;
    width: 3.75rem;
    height: 3.75rem;
    text-align: center;
	margin-bottom: 1rem;
}

.circle-icon i {
	font-size: 1.375rem;
}

.icon-link p {
	font-weight: var(--font-semibold);
}

.featured-img-bg,
.featured-img-bg img {
	aspect-ratio: 1920/354;
	width: 100%;
	display: block;
}

.cta2-content {
	margin: 1rem;
} 

@media (max-width: 500px){
	.banner-button-prev {
		top: auto;
		bottom: 0;
		right: 40px;
		left: auto;
		transform: unset;
	}
	
	.banner-button-next {
		top: auto;
		bottom: 0;
		right: 0;
		left: auto;
		transform: unset;
	}
	
	.banner .swiper-horizontal>.swiper-pagination-bullets, 
	.banner .swiper-pagination-bullets.swiper-pagination-horizontal {
		left: 1rem;
		right: auto;
		width: fit-content;
		bottom: 0.5rem
	}
	
	.banner-text {
		left: 1rem;
		bottom: 3rem;
		width: calc(100% - 2rem);
	}
	
	.banner-text h1 {
		font-size: 1.5rem;
	}
	
	.banner-img {
		min-height: 350px;
	}
}

@media (min-width: 62em){
	.sidebar {
		margin-top: 0;
	}
	
	.page-template.content-container {
		padding: 0 7.5%;
	}
	
	.page-content-inner {
		margin-left: 2rem;
		margin-top: 3rem;
	}
}

@media (min-width: 75em) {
	.banner-img {
		aspect-ratio: 1920/765;
	}
	.banner-text {
		left: 7.5%;
		bottom: 4rem;
		max-width: 60%;
	}
	
	.banner-text h1 {
		font-size: 2.5rem;
	}
	
	.about-section,
	.cta2-section {
		display: flex;
		align-items: center;
		height: 100%;
	}
	
	.about {
		align-self: stretch;
		width: 65%;
		padding: 2rem 0;
	}
	
	.cta1 {
		align-self: stretch;
		width: 35%;
		padding: 2rem 0;
	}
	
	.about p {
		width: 80%;
    	margin-left: 7.5vw;
	}
	
	.cta1-content {
		width: 80%;
		text-align: center;
		margin: auto;
	} 
	
	.cta2-img {
		align-self: stretch;
		width: 65%;
	}
	.cta2-content-wrapper {
		align-self: stretch;
		width: 35%;
	}
	
	.cta2-content {
		width: 80%;
		margin: auto;
	} 
	
	.icon-links {
		padding: 2.5rem 0;
	}
}

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

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

.secondary-nav-item.active, 
.secondary-nav-item.current {
    font-weight: var(--font-semibold);
    border-bottom: none;
}

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

/* DCT subpage */
.intro-content {
    background: var(--light-grey);
    padding: 0.5rem 1rem;
}

/* Article template */
.article-template .ck-editor {
	margin-top: 1rem;
}