/*
Theme Name: CLPT Theme
Author: Matt Tonks
Description: A theme for the CLPT website
Version: 2.0
*/

/*******************************************

	Stylesheet Contents

	S01 - General
	S02 - Typography
	S03 - Header
		S301 - Logo
		S302 - Main Menu
	S04 - Content
		S401 - Home
		S402 - Sidebars/Sidemenus
		S403 - Posts
		S404 - Pages
		S405 - Thumbnails
		S406 - Tables
		S407 - Miscellaneous
	S05 - Footer
		S501 - Footer Typography
		S502 - Footer Content

*******************************************/

/* 
*
* FRONT PAGE STYLEs
*
*/

body {
    font-family: 'Lato', sans-serif;;
}

cite {
    font-style: normal;
}

.dont-show {
	display: none;
}

.article-list {
	width: 100%;
}

.hide-mobile {
    display: none;
}

p.paragraph-text {
    font-family: 'Lato', sans-serif;
    color: #6f6f6f;
}

.prevent-scroll {
    overflow-y: hidden;
}

/* Header styles */

.header {
    width: 100%;
    height: 100vH;
    background-image: linear-gradient(to bottom, rgba(0, 0,0, 0.4), rgba(0, 0, 0, 0.4)), url("images/header-image-1.jpg");
    background-size: cover;
    background-position: center;
    padding: 2rem;
    position: relative;
    background-attachment: scroll;
}

.header__navigation {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
}

.header__navigation > a:first-of-type {
    order: 1;
    margin-top: 20px;
}

.hamburger {
    padding: 10px;
    display: block;
    margin-left: auto;
	background-color: #fff;
	display: flex;
	align-items: center;
	z-index: 9999;
}

.hamburger-box {
	width: 30px;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
	width: 30px;
}


.hamburger .hamburger-text {
	display: none;
	margin-left: 10px;
	color: #332d71;
	font-weight: bold;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    background-color: #fff;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::after, .hamburger.is-active .hamburger-inner::before {
    background-color: #fff;
}

.hamburger-purple.hamburger-inner, .hamburger-purple.hamburger-inner::after, .hamburger-purple.hamburger-inner::before {
    background-color: #332d71;
}

.hamburger.is-active .hamburger-purple, .hamburger.is-active .hamburger-purple::after, .hamburger.is-active .hamburger-purple::before {
    background-color: #332d71;
}

.page-menu .hamburger.is-active:hover, .page-menu .hamburger:hover {
    opacity: 1;
}

.hamburger.is-active:hover .hamburger-text, .hamburger:hover .hamburger-text{
    text-decoration: underline;
}

.page-content .hamburger .hamburger-text, .main-content .hamburger .hamburger-text {
    display: none;
}


@media(min-width: 768px) {
	
	.hamburger-box {
	width: 40px;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
	width: 40px;
}
	
    .header .hamburger {
        display: flex;
        align-items: center;
        background-color: #fff;
        padding: 20px;
    }
    
    .header .hamburger-text {
         display: inline-block;
        color: #332d71;
        margin-left: 10px;
    }
    
    .page-content .hamburger, .main-content .hamburger {
        display: flex;
        align-items: center;
        background-color: #e5e5e5;
        padding: 20px;
    }
    
    .page-content .hamburger .hamburger-text, .main-content .hamburger .hamburger-text {
        display: inline-block;
        color: #332d71;
        margin-left: 10px;
    }

}

.header__content {
    position: absolute;
    top: 55%;
    left: 2rem;
    transform: translateY(-50%);
}

.header__heading, .header__content > span {
    color: #fff;
}

.header__heading {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    /* animation: fadeintop 2s; */
    font-size: 32px;
}

.header__heading > span {
    background-color: #332d71;
    display: inline-block;
    padding:  1rem 1rem 0 2rem;
    margin-left: -3rem;
}

.header__heading > span:nth-of-type(2) {
    padding-bottom: 1rem;
}

.header__content > span {
    border-bottom: 2px solid #332d71;
    animation: fadeinleft 2s;
    display: inline-block;
}

.header__scroll{
    width: 25px;
    height: 40px;
    position: absolute;
    bottom: 10%;
    left: 50%;
    cursor: pointer;
}

.header__scroll .header__scroll__mouse{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border: 2px solid #fff;
    border-radius: 20px;
}
.header__scroll .header__scroll__wheel{
    width: 4px;
    height: 4px;
    top: 10px;
    left: 50%;
    position: absolute;
    background: #fff;
    display: block;
    border-radius: 50%;
    margin-left: -2px;
    animation-name: scroll-wheel;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.header__logo {
    width: 300px;
}

@keyframes scroll-wheel{
    from{
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to{
        transform: translate3d(0, 10px, 0);
        opacity: 0;
    }
}

@keyframes fadeintop {
    from {
        opacity:0;
        transform: translateY(-50px);
    }
    to {
        opacity:1;
        transform: translateY(0px);
    }
}

@keyframes fadeinleft {
    from {
        opacity:0;
        transform: translateX(-50px);
    }
    to {
        opacity:1;
        transform: translateX(0px);
    }
}

@media (min-width: 500px) {
    .header__navigation {
        align-items: center;
        flex-direction: row;
    }

    .header__heading {
        font-size: 36px;
    }

    .header__heading > span {
        padding:  1rem 2rem 0 4rem;
        margin-left: -4rem;
    }

    .header__navigation > a:first-of-type {
        order: 0;
    }

    .header__navigation > a:first-of-type {
        margin-top: 0; 
    }

}

@media (min-width: 768px) {
    .header__heading > span {
        padding:  1rem 2rem 0 4rem;
        margin-left: -4rem;
    }

    .header__heading > span:nth-of-type(2) {
        padding-top: 0;
    }

    .header {
        padding: 2rem 4rem;
    }

    .header__logo {
        height: 80px;
        width: auto;
    }

    .header__content {
        left: 4rem;
    }

    .header__content > span {
        font-size: 18px;
    }

    .header__heading {
        font-size: 48px;
    }

    .header__scroll{
        width: 30px;
        height: 50px;
    }
}

@media (min-width: 1200px) {  
    .header {
        background-attachment: fixed;
    }

    .header__logo {
        height: 100px;
    }

    .header__heading {
        font-size: 84px;
        max-width: 25ch;
    }
}

@media (min-width: 1400px) {
    .header {
        padding: 2rem 4rem;
    }

    .header__content {
        left: 4rem;
    }

    .header__content > span {
        font-size: 22px;
    }

    .hide-mobile {
        display: initial;
    }
}

@media (min-width: 1800px) {
    .header {
        padding: 4rem 12rem;
    }

    .header__content {
        left: 12rem;
    }

    .header__heading > span {
        padding:  1rem 2rem 0 12rem;
        margin-left: -12rem;
    }

    .header__heading > span:nth-child(3) {
        padding-top: 0;
        padding-bottom: 1rem;
    }
}

/* End of header styles */

/* Navigation Styles */

.secondary-navigation {
    display: none;
    margin: 0;
}

.navigation {
  height: 100%;
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  background-color: rgba(51, 45, 113, .9);
  overflow-x: hidden;
  padding-top: 100px;
  transition: 0.5s;
}

.navigation.is-open{
    width: 70%;
}

.navigation__wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.navigation__primary {
    list-style-type: none;
    margin: 0;
    padding: 0 20px;
}

.navigation__primary__item {
    margin-bottom: 30px;
    position: relative;
}

.navigation__primary__item > a {
    border-left: 2px solid transparent;
}

.navigation__primary__item.menu-item-has-children > a::after {
    content: "+";
    position: absolute;
    right: 20px;
}

.navigation__primary__item > a:hover {
    border-left: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}

.navigation__primary__item > a {
    padding-left: 5px;
    color: #fff;
    transition: all 0.15s;
    position: relative;
    display: block;
}

.navigation__primary__item > ul {
    display: none;
}

.navigation__primary__item.active > a {
    border-left: 2px solid #fff;
}

.navigation__primary__item.active.menu-item-has-children > a::after {
    content: "-";
}

.navigation__primary__item > ul{
    margin-top: 20px;
    padding: 0 16px;
}

.navigation__primary__item.active > ul {
    display: block;
    list-style: none;
}

.navigation__primary__item.active > ul > li{
    margin-bottom: 15px;
}

.navigation__primary__item.active > ul > li > a {
    color: #fff;
    font-size: 14px;
}

.navigation__secondary {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background-color: rgb(92, 87, 141);
}

.navigation__secondary__link{
    display: block;
    color: #fff;
    transition: all .3s ease;
}

.navigation__secondary__link:hover {
    color: #332d71;
    transform: translateY(-3px);
    text-decoration: underline;
}

.navigation__secondary__link > .fa-language {
    font-size: 20px;
}

.navigation__secondary__link > .fa-font:nth-of-type(2) {
    font-size: 10px;
}

@media(min-width: 768px) {
    .secondary-navigation {
        display: block;
        background-color: #332d71;
        display: flex;
        justify-content: space-between;
        padding: 0 4rem;
        align-items: center;
        font-size: 14px;
    }

    .secondary-navigation--left, .secondary-navigation--right {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex;
        align-items: center;
    }

    .secondary-navigation--left > li, .secondary-navigation--right > li {
        padding: 10px;
        padding-right: 0;
    }

    .secondary-navigation--left > li > a {
        color: #fff;
    }

    .navigation.is-open{
        width: 50%;
    }

    .navigation__primary__item {
        font-size: 20px;
    }
    
    .navigation__primary__item.active > ul > li > a {
        font-size: 16px;
    }
}

@media(min-width: 1200px) {
    .navigation.is-open{
        width: 30%;
        overflow: hidden;
    }

    .navigation__primary__item {
        font-size: 24px;
    }

    .navigation__primary__item.active > ul > li{
        margin-bottom: 20px;
    }
    
    .navigation__primary__item.active > ul > li > a {
        font-size: 16px;
        font-weight: normal;
    }
}

@media(min-width: 1400px) {
    .navigation.is-open{
        width: 20%;
    }
}

@media(min-width: 1800px)  {
    .secondary-navigation {
        padding: 0 12rem;
    }
}

/* End of navigation styles */

/* Introduction styles */

.introduction {
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
}

.introduction__image {
/*     height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: #332d71; */
/*     overflow: hidden; */
    margin: 0px 0 30px 0;
}

.introduction__image > img:first-child {
	display: none;
}

.introduction__image > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


.introduction__quote {
    margin: 0;
}

.introduction__quote > .paragraph-text::before {
    content: open-quote;
    color: #6f6f6f;
}

.introduction__quote > .paragraph-text::after {
    content: close-quote;
    color: #6f6f6f;
}

.introduction__signature {
    height: 100px;
}

.introduction__quote > footer {
    color: #6f6f6f;
    font-size: 14px;
}

@media(min-width: 768px) {
    .introduction {
        width: 90%;
        margin: 0 auto;
        padding: 3rem 0 ;
    }
	
	.introduction__image {
		height: 300px;
	width: 500px;
	margin: 0 auto 30px auto;
	}

    
    .introduction__text {
        order: 0;
    }

    .paragraph-text {
        font-size: 18px;
    }

    .introduction__quote > .paragraph-text {
        border-left: none !important;
    }
}

@media(min-width: 1024px) {
    .introduction {
        flex-direction: row;
        padding-bottom: 0;
    }
	
	.introduction__image > img:first-child {
	display: block;
}

		.introduction__image > img:last-child {
	display: none;
}

	
    .introduction__image {
        order: 1;
        height: 400px;
        width: 400px;
        margin: 0;
        margin-left: auto;
        border-radius: 0;
        overflow: visible;
        background-color: transparent;
    }

    .paragraph-text {
        font-size: 20px;
        max-width: 50ch;
    }
}

@media(min-width: 1200px) {
    .introduction {
        width: 90%;
        margin: 0 auto;
        padding-top: 5rem;
    }

    .introduction__text h2 {
        margin-bottom: 30px;
    }

    .introduction__image {
       height: 450px;
    }
    
    .introduction__quote > footer {
        font-size: 18px;
    }

    .paragraph-text {
        font-size: 24px;
    }
}

@media(min-width: 1400px) {
    .introduction {
        width: 90%;
    }

    .introduction__image {
        height: 500px;
        width: 500px;
    }
    
    .paragraph-text {
        font-size: 28px;
    }
}

@media(min-width: 1800px) {
    .introduction {
        width: 80%;
    }

    .introduction__image {
        margin-top: -50px;
        height: 550px;
    }
    
    .paragraph-text {
        font-size: 32px;
    }
}

/* End of introduction styles */

/* Stats styles */

.stats {
    background-color: #332d71;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 0;
}

.stats__wrapper {
    text-align: center;
    padding-bottom: 50px;
}

.stats__figure {
    font-size: 48px;
}

.stats__figure, .stats__caption{
    color: #fff;
    display: block;
    text-align: center;
}

@media(min-width: 500px) {
    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 2rem 3rem;
        margin: 0;
    }

    .stats__wrapper {
        min-width: 50%;
    }
}

@media(min-width: 1024px) {
    .stats {
        flex-wrap: nowrap;
        padding: 4rem;
    }

    .stats__wrapper {
        min-width: unset;
        padding-bottom: 0;
    }
}

@media(min-width: 1200px) {
    .stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .stats__figure {
        font-size: 54px;
    }

    .stats__caption {
        font-size: 20px;
    }
}

@media(min-width: 1400px) {
    .stats {
        justify-content: space-around;
        padding: 5rem 4rem;
    }

    .stats__figure {
        font-size: 60px;
    }

    .stats__caption {
        font-size: 22px;
    }
}

/* End of stats styles */

/* Section Styles */

.section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 20px;
}

h3.section__heading {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
}


.section__images, .section__content {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

.section__content {
    margin-top: 20px;
    padding: 0;
}

.section__image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

p.section__text{
    color: #6f6f6f !important;
    margin-bottom: 20px;
}

.section__button {
    background-color: #332d71;
    color: #fff;
    padding: 1rem;
    display: block;
    position: relative;
    transition: all .2s ease-in;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.section__button:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(3px);
    box-shadow: none;
}

.section__button::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    background: rgba(255,255,255, .2);
    color: #fff;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    max-height: 100%;
    padding: 18px 25px;
    position: absolute;
    top:0;
    right: 0px;
    text-decoration: none;
}

.section__button:hover::after{
    background-color: rgba(0, 0, 0, 0.2);
}

@media(min-width: 500px){
    .section__image {
        height: 400px;
    }
}

@media(min-width: 768px){
    .section {
        width: 90%;
        margin: 0 auto;
        padding: 20px 0 50px 0;
    }

    .section__content{
        padding: 0;
    }

    .section__button {
        max-width: 200px;
    }

    .section__image {
        height: 500px;
    }
}

@media(min-width: 1024px){
    .section {
        flex-direction: row;
        width: 90%;
        margin: 0 auto;
        padding-top: 5rem;
        padding-bottom: 7rem;
        align-items: center;    
    }

    .section__images {
        width: 700px;
        height: 350px;
        background: #332d71;
    }

    .section__image {
        height: 450px;
    }

     .section__trustees, .section__improvement {
         padding-bottom: 7rem;
     }

    .section__button {
        max-width: 200px;
    }

    .section__content {
        margin-left: 100px;
    }

    p.section__text {
        max-width: 65ch !important;
    }

    .section__image {
        margin: 30px 0 -30px 30px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    }
}

@media(min-width: 1400px){
    .section {
        width: 90%;
        padding: 7rem 0;
        align-items: center;    
    }

    .section__button {
        max-width: 200px;
    }

    .section__content {
        margin-left: 150px;
    }

    p.section__text {
        max-width: 65ch !important;
        line-height: 1.8 !important; 
    }

    .section__images {
        width: 700px;
        height: 375px;
    }

    .section__image {
        margin: 50px 0 -50px 50px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    }

    .section__trustees > .section__images {
        order: 1;
    }

    .section__trustees > .section__content {
        margin-left: 0;
    }

    .section__trustees {
        padding-bottom: 8rem;
    }
}

@media(min-width: 1800px){
    .section {
        width: 80%;
        padding: 9rem 0;
    }

    .section__text {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }

    .section__images {
        width: 700px;
        height: 450px;
    }
}

/* End of Section Styles */

/* School styles */

.schools {
    position: relative;
    padding: 0 20px;
}

.schools .section__heading {
    margin-bottom: 40px;
}

.section__heading{
    color: #332d71;
    margin-bottom: 20px;
    /* animation: fadeintop 2s; */
}

.section__tagline {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: normal;
    color: #6f6f6f;
    /* animation: fadeinleft 2s; */
}

.carousel__card{
    position: relative;
    display: block;
    overflow: hidden;
    transition: transform .2s;
}

.carousel__card:hover .carousel__card__image {
    transform: scale(1.1);
}

.carousel__card__image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .2s;
}

.image__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;

  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.schools__carousel .carousel__card .image__overlay, .page-content .carousel__card .image__overlay {
    background-color: rgba(51, 45, 113, 0.7);
    color: #fff;
}

.news__carousel .carousel__card .image__overlay {
    color: #fff;
    background-color: rgba(51, 45, 113, 0.7);
}

.carousel__card__tag {
    font-size: 14px;
}

.carousel__card__title {
    font-size: 24px;
}

.schools__carousel .owl-nav {
    position: absolute;
    top: -20px;
    right: 0;
    display: flex;
}

.schools__carousel .owl-dots {
    display: none;
}

.schools__carousel .owl-next, .schools__carousel .owl-prev {
    color: #fff!important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    background-color: #332d71 !important;
    margin: 0 5px;
}

@media(min-width: 768px) {
    .schools {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }

    .schools .section__heading, .schools .section__tagline {
        margin-left: 0px;
    }

    .carousel__card__image {
        height: 300px;
    }

}

@media(min-width: 1200px) {
    .schools {
        padding: 0;
    }
    .carousel__card__image {
        height: 400px;
    }
}

@media(min-width: 1400px) {
    .schools {
        width: 90%;
    }
}

@media(min-width: 1800px) {
    .schools {
        width: 80%;
    }
}

/* End of school styles */

/* Newsboard Styles */

.news {
    margin: 0;
    padding: 2rem 1rem;
    background-size: cover;
    background-position: top;
}

.news > div > h3, .news > div > span {
    display: block;
    text-align: center;
    color: #fff;
}

.news__carousel .owl-nav {
    position: absolute;
    top: -20px;
    right: 0;
    display: flex;
}

.news__carousel .owl-dots {
    display: none;
}

.news__carousel .owl-next, .news__carousel .owl-prev {
    color: #332d71!important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    background-color: #fff !important;
    margin: 0 5px;
}

@media(min-width: 1200px) {
    .news {
        margin: 0;
        padding: 2rem;
    }

    .news > div > h3 {
        margin-bottom: 20px;
    }
}

@media(min-width: 1400px) {
    .news {
        padding-bottom: 100px;
        padding-top: 50px;
    }
}
/* End of newsboard styles */

/* Expansion Section styles */

.section__expansion {
    padding-top: 0;
    margin-top: 0;
    flex-direction: column;
}

@media(min-width: 768px) {
    .section__expansion__image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media(min-width: 1024px) {
    .section__expansion {
        flex-direction: row;
        padding-bottom: 3rem;
    }

    .section__expansion__image {
        max-width: 60%;
        margin: 0 auto;
        margin-left: -100px;
    }
}

@media(min-width: 1200px) {
    .section__expansion__image {
        max-width: 70%;
        margin: 0 auto;
        margin-left: -150px;
    }

    .section__expansion .section__content {
        margin-top: -100px;
    }
}


@media(min-width: 1400px) {
    .section__expansion__image {
        max-width: 80%;
    }
}

@media(min-width: 1400px) {
   .section__expansion{
        padding-top: 0;
        padding-bottom: 5rem;
    }

    .section__expansion__image {
        width: 800px;
        margin-left: -200px;
    }

    .section__expansion .section__content {
        margin-top: -100px;
        margin-left: 100px;
    }
}

@media(min-width: 1800px) {
    .section__expansion{
        padding-top: 0;
        padding-bottom: 5rem;
    }

    .section__expansion__image {
        width: 1000px;
        margin-left: -200px;
    }

    .section__expansion .section__content {
        margin-top: -150px;
    }
}

/* End of expansion styles */

/* Map Section styles */

/** .map__section{
    margin: 0;
    position: relative;
}

.map__section__heading {
    color: #332d71;
    text-align: center;
    margin-bottom: 20px;
}

.map__address__box {
    position: absolute;
    z-index: 100;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255,255,255,.8);
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    padding: 1rem 2rem;
}

.address__box__tagline {
    color: #6f6f6f;
    font-size: .8rem;
    width: max-content;
    display: block;
}

.address__box__heading {
    color: #332d71;
    font-size: 1rem;
    margin-bottom: 10px;
}

.map__address {
    color: #6f6f6f;
    font-size: 14px;
}

.map__address > span {
    display: block;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.address__icon {
    border: 2px solid #332d71;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.address__icon > i {
    color: #332d71;
}

.map {
    width: 100%;
    height: 600px;
}

@media(min-width: 768px){
    .map__section {
        margin: 0;
    }

    .map__address__box {
        top: 100px;
        left: 30px;
        bottom: auto;
        border-radius: 0;
        transform: translateX(0);
    }

    .address__box__heading {
    font-size: 1.2rem;
}

.map__address {
    font-size: 1rem;
}

.map__address > span:nth-child(4){
    padding-top: 20px;
}

.map {
    height: 500px;
}
}

@media(min-width: 1200px){
    .map__address__box {
        left: 50px;
        width: 400px;
    }
}

@media(min-width: 1400px){
    .map {
        height: 600px;
    }
    .map__section {
        padding-top: 100px;
    }

    .map__address__box {
        top: 200px;
        left: 200px;
        width: 500px;
    }
}

*/

/* End of map section styles */


/* Misc Styles */

.policy-card {
	transition: all .2s ease-in-out;
	position: relative;
	display: block;
	box-shadow: 0 0 15px 	rgba(0,0,0,.15);
	background-color: #FFF;
	margin: auto;
	overflow: hidden;
	padding: 16px 0;
	
}

.policy-card:hover {
	text-decoration: none;
	background: #332d71;
	color: #fff;
}

.policy-card__inner {
	position: relative;
	display: flex;
	align-items:center;
	padding: 25px;
}

.policy-card__inner--count {
	border-right: 2px solid #332d71;
	margin-right: 10px;
	padding-right: 10px;
	font-weight: bold
}

.policy-card__inner--title > p {
	color: #332d71;
	font-size: 16px;
	margin: 0;
	padding: 0;
	font-weight: bold
}


.policy-card:hover > .policy-card__inner > .policy-card__inner--count {
	border-color: #fff;
}

.policy-card:hover > .policy-card__inner > .policy-card__inner--title > p {
	color: #fff;
}

.policy-card__inner--count > i {
	padding: 0 5px;
}

.director-name, .directors-section > h2 {
    color: #332d71;
}

.director-name {
    margin: 0 0 10px 0;
    display: inline-block;
    position: relative;
    transition: all .7s ease;
}

.director-name::before {
    content: "";
    position: absolute;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    width: 0;
    background-color:#332d71;
    z-index: -10;
    transition: all .3s ease;
}

 .director-name--active {
    color: #fff;
}

.director-name--active.director-name::before {
    width: 100%;
    padding: 5px;
}

.director-text {
    color: #6f6f6f;
    line-height: 1.5;
}

.directors {
    list-style-type: none;
}

.directors-grid {
    display: none;
}

.directors-section {
    margin: 20px;
}

.directors-profiles .director-profile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 75px 0;
}

.directors-profiles .director-profile .director-bio {
  max-width: 100%;
  order: 1;
}

.directors-profiles .director-profile div .director {
  width: 150px;
  height: 150px;
  background-color: #332d71;
  transform: rotate(45deg);
  overflow: hidden;
  margin-bottom: 50px;
}

.directors-profiles .director-profile div .director .director-image {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg) scale(1.42);
  background-position: center;
  background-size: cover;
  opacity: .6;
  transition: all .2s ease-in;
}

.directors-profiles .director-profile div .director .director-image:hover {
    opacity: 1;
}

.director--1 > .director-image {
    background-image: url("https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&h=400&q=80");
}

.director--2 > .director-image {
    background-image: url("https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&h=400&q=80");
}

.director--3 > .director-image {
    background-image: url("https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&h=400&q=80");
}

.director--4 > .director-image {
    background-image: url("https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&h=400&q=80");
}

.director--5 > .director-image {
    background-image: url("https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&h=400&q=80");
}

.director-bio-right {
  margin: 0 0 0 100px;
  text-align: left;
}

@media(min-width: 768px) {
    .directors-section {
        margin-top: 100px;
    }

    .directors-profiles .director-profile {
        flex-direction: row;
        justify-content: space-evenly;
        margin-bottom: 75px;
    }

    .directors-profiles .director-profile .director-bio {
        max-width: 50ch;
        order: 0;
    }
    
    .directors-profiles .director-profile:nth-child(odd) .director-bio {
        order: 1;
        margin-left: 25px;
    }
}

@media(min-width: 1024px) {
    .directors-profiles .director-profile .director-bio {
        max-width: 60ch;
        order: 0;
    }
}

@media (min-width: 1400px) { 
    .directors-section {
        margin: 100px 0;
    }
    
    .directors-profiles {
        display: none;
    }

    .directors-grid {
        display:grid;
        grid-template-columns: 1fr 600px 1fr; 
        height: 100vH;
        max-width: 1300px;
        margin: 0 auto;
    }

    .directors-grid-left {
        display: grid;
        grid-template-rows: repeat(3, 1fr);
        align-items: center;
        justify-items: end;
        text-align: right;
    }

    .directors {
        position: absolute;
        height: 600px;
        width: 150px;
        margin: 0;
        padding: 0;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .director {
        list-style: none;
        position:absolute;
        width: 200px;
        height: 200px;
        background-color: #332d71;
        transform: rotate(45deg);
        margin: -100px;
        overflow: hidden;
    }

    .director--odd {
        left: 0;
    }

    .director--even {
        right: 0;
    }

    .director-image {
        width: 100%;
        height: 100%;
        transform: rotate(-45deg) scale(1.42);
        background-position: center;
        background-size: cover;
        opacity: .6;
        transition: .2s ease-in;
    }

    .director-image:hover {
        opacity: 1;
    }

    .directors-grid-right {
        display: grid;
        grid-template-rows: repeat(3, 1fr);
        justify-items: start;
        align-items:center;
    }
}

@media(min-width: 1800px) {
    .directors-grid {
        max-width: 1400px;
    }
}


/*******************************************
	S01 - General
*******************************************/

/* Lato */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,400i,700');

@media (min-width: 1330px) {
	.container {
	    max-width: 1300px;
	}
}

/*******************************************
	S02 - Typography
*******************************************/
.page-content h1, .post-content h1 { 
    line-height: 1.65em;
    font-size: 1.485rem; 
    font-weight: 500;
}
.page-content h2, footer h2, .post-content h2 { 
    line-height: 1.65em;
    font-size: 1.135rem; 
    font-weight: 500;
}
.page-content h3, .post-content h3 { 
    line-height: 1.65em;
    font-size: 1.08rem; 
    font-weight: 600;
}
.page-content h4, .post-content h4 { 
    font-weight: 600;
    line-height: 1.65em;
    font-size: 1.01rem; 
}

.page-content p + h2, .page-content ul + h2 { margin-top: 22px; }

.post-content p, .post-content ul, .page-content p, .page-content ul  {
	font-size: 1rem;
	line-height: 1.55em;
	margin-bottom: 14px;
	text-align: justify;
}

.sidebar p, .sidebar ul, .sidebar ol, footer ul {
    font-size: .9rem;
    font-weight: 500;
	line-height: 1.55em;
	margin-bottom: 14px;
	text-align: justify;
}

.sidebar h2 {
    font-weight: bold;
}

strong { color: #332d71; font-weight: normal; }

a {
	transition: all ease .4s;
	-webkit-transition: all ease .4s;
}

h1:hover a, h2:hover a, h3:hover a, h4:hover a, h5:hover a, h6:hover a {
	text-decoration: none;
}
.page-content a[href*="sharepoint.com"]::before, .page-content a[href$=".pdf"]::before {
    content: "\f1c1";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    margin-right: 5px;
    text-decoration: none;
}
.page-content a[href$=".xlsx"]::before, a[href$=".csv"]::before {
	content: "\f1c2";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    margin-right: 5px;
    text-decoration: none;
}

/*******************************************
	S04 - Content
*******************************************/

/* S401 - Home */

.article-list {
    background: #EFEFEF;
    line-height: 1.35em;
    margin: 0;
    padding: 0;
}
@media (min-width: 576px) and (max-width: 767px){
    .article-list .article-item {
        padding-right: 1rem !important;
    }
}
@media (max-width: 575px){
    .article-list .article-item {
        padding-right: 1rem !important;
    }
}

.article-list-heading {
    color: #fff;
    font-size: 1.2em;
    letter-spacing: 1.2px;
    margin: 0;
    padding: 15px;
    text-transform: uppercase;
}

.article-list .article-title a {
    display: block;
    letter-spacing: -.1px;
    line-height: 1.5rem;
    white-space: pre-wrap;
    width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px){
    .article-list .article-title a {
        line-height: 1.7rem;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .article-list .article-title a {
        line-height: 1.7rem;
    }
}
@media (min-width: 576px) and (max-width: 767px){
    .article-list .article-title a {
        line-height: 1.7rem;
    }
}
@media (max-width: 575px){
    .article-list .article-title a {
        line-height: 1.7rem;
    }
}

.article-list .article-item img {
	width: 100%;
}
.article-list .article-text {
    max-height: 127px;
    overflow-y: hidden;
}
.article-list p {
	color: #6F7A7B;
	font-size: .9rem;
    line-height: 1.6em;
    max-height: 90px;
    overflow: hidden;
}
.article-list .article-item .btn-wrap {
    width: 180px;
}

.welcome-message p {
    font-size: .985em;
}

.sidebar-home .sidebar_widget_custom_html {
	margin-top: -50px;
}

/* S402 - Sidebars/Sidemenus */

.sidebar {
    padding-left: 15px;
    padding-right: 15px;
}
.sidebar-home {
    padding-right: 0;
    z-index: 3;
}
@media (max-width: 991px){
    .sidebar-home {
        margin-top: 15px !important;
        padding: 0;
    }
}

.sidebar_widget_recent_entries ul {
	list-style-type: none;
	padding: 0 15px 15px 15px;
}

.sidebar-posts, .sidebar-pages {
	margin-top: 6rem;
}
@media (max-width: 991px){
	.sidebar-posts, .sidebar-pages {
		margin-top: 2rem;
	}
}
.sidebar h2 {
	color: #333;
	font-size: 1.1rem;
	letter-spacing: .7px;
	margin: 0;
	padding: 0 0 0.5em 0;
	text-transform: uppercase;
}
.sidebar p {font-size: .915rem; line-height: 1.6em; }
.sidebar-module {
	background: #EFEFEF;
	margin-bottom: 15px;
	padding: 20px;
}
.sidebar_widget_nav_menu, .sidebar_events_widget, .sidebar_recent_stories {
	padding: 0;
}
.sidebar_widget_nav_menu h2, .sidebar_events_widget h2, .sidebar_recent_stories h2 {
	padding: 20px;
}
.sidebar-module h3 {
	color: #333;
	font-family: "TeX Gyre Adventor Bold", Century Gothic, sans-serif;
	font-size: 1.1rem;
	letter-spacing: .5px;
	text-transform: uppercase;
}
.sidebar .menu {
	background: #fff;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.sidebar .menu li { margin-bottom: 1px; }
.sidebar .menu a {
	color: #fff;
	display: block;
	padding: 16px 18px;
	position: relative;
	text-decoration: none;
}
.sidebar .menu a::after {
    background: rgba(255,255,255,.2);
    color: #fff;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    max-height: 100%;
    padding: 18px 25px;
    position: absolute;
    right: 0px;
    text-decoration: none;
    top: 0;
}
.sidebar .menu i {
    font-size: .9rem;
    margin-right: 12px;
    width: 15px;

}
.sidebar-module .btn-expand::before {
	content: 'Read More';
	display: block;
}
.sidebar-module .btn-expand[aria-expanded="true"]::before {
    content: 'Close' !important;
    display: block;
}

.recent-stories{
    background: #efefef;
}

/* S403 - Posts */

.title {
	border-bottom: 2px solid #f0f0f1;
	font-size: 1.485em;
	margin-bottom: 30px;
	padding-bottom: 25px;
}

/* S404 - Pages */

.post-content, .page-content {
	margin-top: 2rem;
	min-height: 1000px;
}

@media (max-width: 991px){
	.post-content, .page-content {
		min-height: 100%;
	}
}


/* S405 - Thumbnails */

.home-featured-thumbnail {
    height: 175px;
    margin-bottom: .8rem;
    overflow: hidden;
    width: auto;
}
.article-list .article-item img {
    object-fit: cover;
}
.home-featured-thumbnail.compat-object-fit {
    position: relative;
    background-size: cover;
    background-position: center center;
}
.home-featured-thumbnail.compat-object-fit > a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.home-featured-thumbnail.compat-object-fit .home-featured-thumbnail {
    display: none;
}

.gallery {
    clear: both;
    margin-top: 1.5em;
}
.gallery-item {
	width: 120px;
	height: 120px;
}
.gallery-item img {
    height: 110px;
    object-fit: cover;
    overflow: hidden;
    opacity: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}
.gallery-item img:hover {
    opacity: .7;
}
@media(min-width: 992px) and (max-width: 1199px){
    .gallery-item {
        width: 115px;
        height: 115px;
    }
    .gallery-item img {
        height: 105px;
    }
}
@media(min-width: 576px) and (max-width: 767px){
    .gallery-item {
        width: 110px;
        height: 110px;
    }
    .gallery-item img {
        height: 100px;
    }
}
@media(max-width: 575px){
    .gallery-item {
        width: 105px;
        height: 105px;
    }
    .gallery-item img {
        height: 95px;
    }
}

.post-page-featured-square {
	float: left;
	margin: 0 1.5rem 1.5rem 0;
}
@media(min-width: 576px) and (max-width: 991px){
    .post-page-featured-square {
        width: 30%;
        margin: 0 1rem 1rem 0;
    }
}
@media(max-width: 575px){
    .post-page-featured-square {
        width: 40%;
        margin: 0 1rem 1rem 0;
    }
}

/* S406 - Tables */

.table {
	font-size: .935rem;
	margin: 1rem 0 1.5rem 0;
    border-collapse: collapse;
}
.table th  {
	font-weight: normal;
	vertical-align: middle;
}
.table thead th {
    border-bottom: 2px solid #c6c6c6;
    color: #424242;
}
.table-striped tbody tr:nth-of-type(2n+1){
    background: #f3f3f3;
}

/* S407 - Miscellaneous */

/*-- Carousel Plugin Overrides --*/
.carousel {
    left: 0;
    position: relative !important;
    top: 0;
}

/*-- Progress Bars --*/
.progress {
    height: 2.2rem;
    font-size: .855em;
}
.progress-bar {
    -webkit-transition: width 2.5s ease;
    transition: width 2.5s ease;
}
.progress .progress-bar {
    animation-name: animateBar;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
}
@keyframes animateBar {
    0% {transform: translateX(-100%);}
    100% {transform: translateX(0);}
}

/*-- RSS Feeds --*/

.sidebar_widget_rss ul {
    list-style-type: none;
    padding: 0;
}
.sidebar_widget_rss li {
    padding: .3em 0;
}
/*-- Buttons and Tabs --*/

.tab-content {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 1.5rem;
}
.nav-link {
    font-size: .9rem;
}
/*-- Primary Buttons --*/
.btn-outline-primary {
    border-radius: 0;
    font: .7em "TeX Gyre Adventor", Century Gothic, sans-serif;
    letter-spacing: .5px;
    padding: .8rem 3.5rem;
    position: relative;
    text-transform: uppercase;
}
.btn-outline-primary:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: none;
}
/*-- White Buttons --*/
.btn-outline-light {
    border-radius: 0;
    font: .7em "TeX Gyre Adventor", Century Gothic, sans-serif;
    letter-spacing: .5px;
    padding: .8rem 3.5rem;
    position: relative;
    text-transform: uppercase;
}
.btn-outline-light:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus {
    box-shadow: none;
}
.btn-page-more:hover::after {
    content: "\f054";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: .6rem;
    position: absolute;
    right: 25px;
    top: 17px;
}
.btn-page-older:hover::before {
    content: "\f100";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: .6rem;
    position: absolute;
    left: 25px;
    top: 17px;
}
.btn-page-newer:hover::after {
    content: "\f101";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: .6rem;
    position: absolute;
    right: 25px;
    top: 17px;
}

#top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.39);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9999;
}
#top i {
    top: 3px;
    color: #fff;
    margin: 0;
    position: relative;
    font-size: 1em;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#top:hover i {
    top: 1px;
    color: #fff;
}


/*-- Columns --*/

.column {
	padding: 0 1rem 1rem 0;
}
.column p, .column ul, .column ol {
	text-align: left;
}

/*-- Containers --*/

.collapse-title {
	cursor: pointer;
	margin: 1rem 0;
}
.collapse-title i {
	color: #8c8c8c;
	left: 5px;
	position: relative;
	top: 1px;
}

/*-- Cards --*/

.card { margin-bottom: 1.5rem; border-radius: 0;}

.card-header {
	background: #001b54;
    color: #fff;
    font-weight: bold;
    border-radius: 0 !important;
    text-transform: uppercase;
}

/*-- Events --*/

.event-meta-date {
	background: #bdbdbd;
	float: left;
	height: 70px;
	margin: 0 1em .5em 0;
	width: 70px;
}
.event-meta-date h1.day {
	color: #fff;
    font: normal 1.7rem "TeX Gyre Adventor", Century Gothic;
    line-height: 0;
    margin-top: .8em;
	text-align: center;
}
.event-meta-date h1.month {
	color: #fff;
    font: normal 1.2rem "TeX Gyre Adventor", Century Gothic;
    line-height: 0;
    margin-top: 1.4em;
	text-align: center;
	text-transform: uppercase;
}

.latest-events, .latest-events li, .recent-stories, .recent-stories li {
	list-style-type: none;
	padding: 8px 10px;
}

.latest-events li {
	height: 88px;
}
.latest-events p {
	font-size: .835rem;
}


/*-- Recent Stories --*/

.recent-stories h4 {
	margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.recent-stories li {
	height: 95px;
	padding-right: 15px;
}
.recent-stories p {
	font-size: .855rem;
}

/*-- Google Translate --*/

.goog-logo-link {
	display:none !important;
}

.goog-te-gadget{
	color: transparent !important;
	height: 30px;
	overflow: hidden;
}

/*-- Photo Gallery --*/

.photo-gallery .article-text p {
    display: none;
}



/*******************************************
	S05 - Footer
*******************************************/

/* S501 - Footer Typography */
.footer h2 {
	margin-bottom: 1rem;
    color: #FFF;
    letter-spacing: .3px;
    text-transform: uppercase;
    font-weight: bold;
}
.footer a, .footer a:hover {
	color: #fff;
    word-wrap: break-word;
}
.footer .menu li::before {
    content: "\f054";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: .6rem;
    margin-right: 8px;
    text-decoration: none;
    top: 14px;
}

.footer-social-media .menu li::before {
    display: none;
}
.footer-social-media .menu li {
    display: inline-block;
    padding-right: 1em;
}
.footer-social-media .menu li i {
    font-size: 1.75rem;
}
@media(max-width: 575px){
    .footer-social-media .menu li {
        padding-right: .455em;
    }
}

/* S502 - Footer Content */
.footer {
	clear: both;
	color: #FFF;
	padding: 30px 0 50px;
}
.footer .container {
    padding: 0 3rem;
}
.footer p, .footer ul {
	color: #FFF;
	text-align: left;
}
.footer ul {
	color: #FFF;
	list-style-type: none;
	margin: 0 0 15px 0;
	padding: 0;
}
.footer select {
	background: transparent;
	border: 0;
	color: #fff;
	font: normal .9rem;
	margin-left: -4px !important;
}
.footer option {
	color: #5D5D5D;
}
.footer #font-increase, .footer #font-decrease {
	cursor: pointer;
	display: inline-block;
    font-size: 1.185rem;
    margin: 0 0 0 5px;
}
.footer #font-increase {
	font-size: 1rem;
}
.footer #font-decrease {
	font-size: .8rem;
}
.footer .menu {
	color: #FEFEFE;
	list-style-type: none;
	margin-bottom: 1.5rem;
	padding: 0;
}
.footer .menu li {
	line-height: 1.55em;
}

@media (max-width: 767px){
	.partner-schools-container {
	    position: absolute;
	    top: -9999px;
	    left: -9999px;
	}
}

#latest-tweet ul { list-style-type: none; margin: 0; padding: 0; }
#latest-tweet .tweet { font-size: .935em; line-height: 1.8em; text-align: left; width: 90%; word-wrap: break-word; }
#latest-tweet .timePosted { clear: both; font-size: .865em; }
#latest-tweet .interact { display: none; }

.copyright {
	margin: .8em auto 1.4em;
	text-align: center;
}
.copyright img {
    margin: 0 auto .6em;
}
.copyright p {
	color: #989898;
	font-size: .725rem;
	margin-bottom: .3em;
	text-align: center;
}
@media (max-width: 767px){
	.copyright p {
	    position: absolute;
	    top: -9999px;
	    left: -9999px;
	}
}

/* 

Addtional CSS

*/

#popup-Poster .modal-content {
	background: transparent;
	border: none;
}

.goog-te-combo {
	background-color: #5c578d;
	color: #fff;
	border: none;
	padding: 5px;
	margin: 0 !important;
}

.policy-card {
	transition: all .2s ease-in-out;
	position: relative;
	display: block;
	box-shadow: 0 0 15px 	rgba(0,0,0,.15);
	background-color: #FFF;
	margin: auto;
	overflow: hidden;
	padding: 16px 0;
	
}

.policy-card:hover {
	text-decoration: none;
	background: #332d71;
	color: #fff;
}

.policy-card__inner {
	position: relative;
	display: flex;
	align-items:center;
	padding: 25px;
}

.policy-card__inner--count {
	border-right: 2px solid #332d71;
	margin-right: 10px;
	padding-right: 10px;
	font-weight: bold;
	color: #6f6f6f;
	display: flex;
	align-items:center
}

.policy-card__inner--title > p {
	color: #332d71;
	font-size: 16px;
	margin: 0;
	padding: 0;
	font-weight: bold
}

.policy-card:hover > .policy-card__inner > .policy-card__inner--count {
	border-color: #fff;
	color: #fff;
}

.policy-card:hover > .policy-card__inner > .policy-card__inner--title > p {
	color: #fff;
}

.policy-card__inner--count > i {
	padding: 0 5px;
}

.clpt-download-link {
	background-color: #332d71;
	color: #fff;
	display: block;
	padding: 16px 18px;
	position: relative;
	text-decoration: none;
	margin-bottom: 1px;
}

.clpt-download-link:hover {
	text-decoration: none;
}

.clpt-download-link:hover.clpt-download-link::after {
	background: rgba(0, 0, 0, .2);
}

.clpt-download-link > p {
	color: #fff;
	margin: 0;
	max-width: 25ch;
	text-align: left;
}

@media(min-width: 768px) {
	.clpt-download-link > p {
		max-width: 100%;
	}
}

.clpt-download-link::before {
	display: initial !important;
	content: "" !important;
	margin: 0 !important;
}

.clpt-download-link::after {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    max-height: 100%;
    padding: 18px 25px;
    position: absolute;
    right: 0px;
    text-decoration: none;
    top: 0;
	bottom: 0;
}

.main-content, .page-content {
    margin-bottom: 20px;
}

/* 

Partner Schools Page Styling

*/

.academies-section{
    width: 100%;
    height: 100%;
}

 
.partner-academies{
    width: 90%;
    margin: 0 auto;
	padding-top: 30px;
}

.partner-academies-grid{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
}

.grid-academy {
    background-color: #f2f2f2;
}

.grid-academy-image{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.grid-academy-image > img:first-child {
	display: none;
}

.grid-academy-image > img {
/*     width: 250px; */
    height: 250px;
	padding: 0 10px;
}

.grid-clpt-logo {
    display: none;
}

@media(min-width: 768px) {
    .academies-section{
        overflow-x: hidden;
    }
    .partner-academies{
        width: 1000px;
        height: 1000px;
		margin: 50px auto;
		padding-top: 0;
    }

    .partner-academies-grid{
        height: 100%;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 1fr);
        grid-gap: 10px;
    }

    .grid-academy {
        overflow: hidden;
    }

    .grid-academy-image{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
	
	.grid-academy-image > img:first-child {
	display: block;
}
	
	.grid-academy-image > img:last-child {
	display: none;
}

    .grid-academy-image > img {
        width: 100px;
        height: 100px;
		filter: grayscale(100%) opacity(65%);
    
    }

    .grid-clpt-logo {
        grid-column: 1;
        grid-row: 1;
        overflow: hidden;
		display: none;
    }

    .grid-clpt-logo > img {
        width: 100%;
        height: 100%;
        transform: rotate(-45deg) scale(1.42);
    }

    .grid-academy-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .grid-academy-2 {
        grid-column: 2;
        grid-row: 1;
    }

    .grid-academy-3 {
        grid-column: 3;
        grid-row: 1;
    }

    .grid-academy-4 {
        grid-column: 4;
        grid-row: 1;
    }

    .grid-academy-5 {
        grid-column: 1;
        grid-row: 2;
    }

    .grid-academy-6 {
        grid-column: 4;
        grid-row: 2;
    }

    .grid-academy-7 {
        grid-column: 3;
        grid-row: 2;
    }

    .grid-academy-8 {
        grid-column: 2;
        grid-row: 2;
    }

    .grid-academy-9 {
        grid-column: 1;
        grid-row: 3;
    }

    .grid-academy-10 {
        grid-column: 2;
        grid-row: 3;
    }

    .grid-academy-11 {
        grid-column: 3;
        grid-row: 3;
    }

    .grid-academy-12 {
        grid-column: 1;
        grid-row: 4;
    }

    .grid-academy-13 {
        grid-column: 2;
        grid-row: 4;
    }

    .grid-academy-14 {
        grid-column: 3;
        grid-row: 4;
    }

    .grid-academy-15 {
        grid-column: 4;
        grid-row: 3;
    }   
}

@media(min-width: 1024px) {
	.academies-section{
		overflow-x: visible;
    }
		
    .grid-clpt-logo {
        grid-column: 4;
        grid-row: 4;
        overflow: hidden;
		display: block;
    }
	
	
    .partner-academies{
        width: 980px;
        height: 980px;
        margin: 300px auto;
		transform: rotate(45deg);
    }

   .grid-academy-image > img {
    width: 90px;
    height: 90px;
	   transform: rotate(-45deg);
        transition: all .2s ease-in;
}
	
	 .grid-academy-image:hover > img {
        transform: rotate(-45deg) scale(1.1);
		 filter: grayscale(0) opacity(100%);
    }

}


@media(min-width: 1200px) {
	.academies-section {
		margin-top: -250px
	}
	
    .partner-academies{
        width: 1000px;
        height: 1000px;
        margin: 300px auto;
    }

.grid-academy-image > img {
    width: 100px;
    height: 100px;
}


.grid-academy-1 {
    grid-column: 1;
    grid-row: 3;
}

.grid-academy-2 {
    grid-column: 2;
    grid-row: 2;
}

.grid-academy-3 {
    grid-column: 3;
    grid-row: 1;
}

.grid-academy-4 {
    grid-column: 4;
    grid-row: 1;
}

.grid-academy-5 {
    grid-column: 4;
    grid-row: 2;
}

.grid-academy-6 {
    grid-column: 3;
    grid-row: 2;
}

.grid-academy-11 {
    grid-column: 5;
    grid-row: 3;
}

.grid-academy-15 {
    grid-column: 3;
    grid-row: 5;
}

.grid-academy-9 {
    grid-column: 5;
    grid-row: 2;
}

.grid-academy-10 {
    grid-column: 5;
    grid-row: 1;
}

.grid-academy-14 {
    grid-column: 2;
    grid-row: 5;
}

.grid-academy-12 {
    grid-column: 1;
    grid-row: 4;
}

.grid-academy-13 {
    grid-column: 1;
    grid-row: 5;
}

.grid-academy-7 {
    grid-column: 4;
    grid-row: 3;
}

.grid-academy-8 {
    grid-column: 4;
    grid-row: 4;
}

.grid-clpt-logo {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 5;
}
}

@media(min-width: 1400px) {
    .partner-academies{
        width: 1200px;
        height: 1200px;
    }

    .grid-academy-image > img {
        width: 150px;
        height: 120px;
    }
}


.tooltip {
    display: none;
}


@media(min-width: 1200px) {

    .tooltip {
        display: initial;
    }

    .tooltip.show {
        opacity: 1;
    }

    .arrow::before {
        display: none;
    }

    .tooltip > .tooltip-inner {
        max-width: 700px;
        background-color: #fff;
        color: #332d71;
        padding: 2rem 3rem;
        border-radius: 0;
        border-left: 5px solid #332d71;
        text-align: left;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    }

    .partner-school-list > li > i {
        color: #332d71;
    }
}

#google_translate {
 overflow: hidden;
 cursor: pointer;
 position: relative;
 height: 40px
}

#google_translate > span {
 display: flex;
 background-color: #5c578d;
 height: 40px;
 padding: 0 20px;
 color: #fff;
 font-size: 14px;
 width: 200px;
 align-items: center;
 justify-content: space-around;
 transition: color 0.2s ease-in-out,opacity 0.2s ease-in-out,background-color 0.2s ease-in-out,border-color 0.2s ease-in-out;
 -webkit-transition: color 0.2s ease-in-out,opacity 0.2s ease-in-out,background-color 0.2s ease-in-out,border-color 0.2s ease-in-out;
 -moz-transition: color 0.2s ease-in-out,opacity 0.2s ease-in-out,background-color 0.2s ease-in-out,border-color 0.2s ease-in-out;
 -o-transition: color 0.2s ease-in-out,opacity 0.2s ease-in-out,background-color 0.2s ease-in-out,border-color 0.2s ease-in-out
}


#google_translate > span i.logo {
 display: none
}

#google_translate select {
 position: absolute;
 height: 30px;
 width: 100%;
 top: 0;
 left: 0;
 cursor: pointer;
 opacity: 0
}

.language-icon {
    border: 2px solid #fff;
    height: 1.2rem;
    width: 1.2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-fixed {
	z-index: 999;
}


.midnightHeader.default .hamburger{
	display: none;
	background: #332d71;
}

.midnightHeader.default .header__logo {
	display: none;
}

.midnightHeader.white {
	background: #332d71;
}

.midnightHeader.purple {
	background: #fff;
}

.midnightHeader.white .hamburger {
	display: flex;
	background: #fff;
}

.midnightHeader.white .hamburger-text {
	color: #332d71;
}


.midnightHeader.purple .hamburger {
	display: flex;
	background: #332d71;
}

.midnightHeader.purple .hamburger-text {
	color: #fff;
}

.midnightHeader.white .hamburger-purple.hamburger-inner, .midnightHeader.white .hamburger-purple.hamburger-inner::after, .midnightHeader.white .hamburger-purple.hamburger-inner::before {
    background-color: #332d71;
}

.midnightHeader.purple .hamburger-purple.hamburger-inner, .midnightHeader.purple .hamburger-purple.hamburger-inner::after, .midnightHeader.purple .hamburger-purple.hamburger-inner::before {
    background-color: #fff;
}


.menu-fixed .header__navigation {
	padding: 10px 20px;
}

.menu-fixed .header__logo {
	display: none;
}

@media(min-width: 768px) {
	.menu-fixed .header__navigation {
		padding: 10px 4rem;
	}
	
	.menu-fixed .header__logo {
	display: block;
}
}

.menu-fixed .header__navigation img {
	height: 50px;
}

.midnightHeader.white .header__logo__purple {
	display: none;
}

.midnightHeader.purple .header__logo__white {
	display: none;
}

@media(min-width: 1800px) {
	.menu-fixed .header__navigation {
		padding: 10px 12rem;
	}
}