:root {
    --white: #ffffff;
    --blue: #00003F;
    --grey: #C8C8C8;
    --green : #00CB6F;
    --light-blue : #4FC0D9;

    --gradient : linear-gradient(90deg, #4FC0D9 0%, #00CB6F 100%);
    --gradient-hover: linear-gradient(90deg, #00CB6F 0%, #4FC0D9 100%);
    --opacity-gradient : linear-gradient(90deg, rgba(0, 203, 111, 0.00) 0%, #00CB6F 100%);

    /*--regular : 'mark_proregular';
    --headingMedium : 'vanguard_cfmedium';
    --headingBold : 'vanguard_cfbold';*/

    --regular : 'FFMarkProRegular';
    --bold : 'FFMarkProBold';
    --headingMedium : 'VanguardCFMedium';
    --headingBold : 'VanguardCFBold';

}

@font-face {
  font-family: "FFMarkProRegular";
  src: url('../font.html') format('woff2'), url('../woff/font.woff') format('woff');
}
@font-face {
  font-family: "FFMarkProBold";
  src: url('../woff2/font.woff2') format('woff2'), url('../woff/font-2.woff') format('woff');
}

@font-face {
    font-family: 'VanguardCFMedium';
    src: url('../eot/vanguardcfmedium.eot');
    src: url('../eot/vanguardcfmedium.eot') format('embedded-opentype'),
         url('../woff2/vanguardcfmedium.woff2') format('woff2'),
         url('../woff/vanguardcfmedium.woff') format('woff'),
         url('../ttf/vanguardcfmedium.ttf') format('truetype'),
         url('../svg/vanguardcfmedium.svg#VanguardCFMedium') format('svg');
}

@font-face {
    font-family: 'VanguardCFBold';
    src: url('../eot/vanguardcfbold.eot');
    src: url('../eot/vanguardcfbold.eot') format('embedded-opentype'),
         url('../woff2/vanguardcfbold.woff2') format('woff2'),
         url('../woff/vanguardcfbold.woff') format('woff'),
         url('../ttf/vanguardcfbold.ttf') format('truetype'),
         url('../svg/vanguardcfbold.svg#VanguardCFBold') format('svg');
}

/*@font-face {
    font-family: 'mark_proregular';
    src: url('../fonts/markpro-webfont.woff2') format('woff2'),
         url('../fonts/markpro-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'vanguard_cfmedium';
    src: url('../fonts/vanguardcf-medium_2-webfont.woff2') format('woff2'),
         url('../fonts/vanguardcf-medium_2-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'vanguard_cfbold';
    src: url('../fonts/vanguardcf-bold_2-webfont.woff2') format('woff2'),
         url('../fonts/vanguardcf-bold_2-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}*/

/* ############ GLOBAL ############ */

html, body {
    font: normal 10px/1.5 arial,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    cursor: default;
    width:100%;
    height:auto;
    margin:0px;
    padding:0px;
    line-height:1.5;
    color: var(--blue);
    letter-spacing: 0.01em;
    font-family: var(--regular);
    word-wrap: break-word;
}
* {
    box-sizing: border-box;
}

.post,
.page {
	margin: 0;
}

.page-content, .entry-content, .entry-summary {
    margin: 0;
}

p{
    font-size:2.4rem;
    margin-bottom: 3rem;
    line-height:1.5;
}
ul li,
ol li{
    font-size: 2.4rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headingMedium);
    -webkit-margin-before: 0.0em;
    -webkit-margin-after: 0.0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    line-height: 1;
    margin-top:0px;
    margin-bottom:2rem;
    color: var(--green);
}
h1{
    font-size: 12.2rem;
    text-transform: uppercase;
}
h2{
    font-size: 12.2rem;
    text-transform: uppercase;
}
h3{
    font-size: 7.2rem;
    text-transform: uppercase;
}
h4{
    font-size: 5.6rem;
}
h5{
    font-size: 4.2rem;
}
h6{
    font-size: 3.6rem;
}
a,
a:visited {
    color: inherit;
    text-decoration: none;
}
a:hover {
    opacity: 1;
    text-decoration: none;
    color: inherit;
}
a:focus{
    outline: none;
}

b, strong {
    font-family:var(--bold);
}
h1 b, h2 b, h3 b, h4 b, h5 b, h6 b, h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-family:var(--headingBold);
    font-weight:normal;
}

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

hr {
    margin: 10rem 0;
    color: inherit;
    border: 0;
    border-top: 5px solid var(--blue);
    opacity: 1;
}

/* WYSIWYG */
.entry-content .copy > *:first-child{
    margin-top:0;
}
.entry-content .copy img{
    margin: 4rem 0 4rem 0;
}
.entry-content .copy img.margin-bottom-0{
    margin: 4rem 0 0rem 0;
}
.entry-content .copy img.aligncenter{
    margin: 6rem auto 6rem auto;
}
.entry-content .copy blockquote{
    margin: 9rem 0;
}
/*.entry-content .copy h2{
    margin-top: 8rem;
    margin-bottom: 4rem;
    font-size: 7.2rem;
}*/
.entry-content .copy h3{
    margin-top: 8rem;
    margin-bottom: 4rem;
    font-size: 7.2rem;
}
.entry-content .copy h4{
    text-transform: uppercase;
    font-size: 5.6rem;
    margin-top:6rem;
    margin-bottom: 3.5rem;
}
.entry-content .copy h5{
    text-transform: uppercase;
    font-size: 4.2rem;
    margin-top:5.5rem;
    margin-bottom: 3rem;
}
.entry-content .copy h6{
    text-transform: uppercase;
    font-size: 3.6rem;
    margin-top:5rem;
    margin-bottom: 3rem;
}
.entry-content.program-page .section-image-text .copy h6 {
    margin-bottom: 2rem;
}
.entry-content .copy ul,
.entry-content .copy ol{
    padding-left:0;
    margin-top:4rem;
    margin-bottom:4rem;
}
.entry-content .copy ul li,
.entry-content .copy ol li{
    margin-bottom:1rem;
}
.entry-content .copy ul li:last-child,
.entry-content .copy ol li:last-child{
    margin-bottom:0rem;
}
.entry-content .copy ul li::marker,
.entry-content .copy ol li::marker{
    color:var(--green);
}
.entry-content .copy ol li::marker{
    font-family:var(--headingBold);
    font-size:2.3rem;
}
.entry-content .copy li a,
.entry-content .copy p a{
    font-family:var(--bold);
    text-decoration:underline;
}
.entry-content .copy li a:hover,
.entry-content .copy p a:hover{
/*    opacity:0.7;*/
    color:var(--green);
}
.program-page.entry-content .copy li a:hover,
.program-page.entry-content .copy p a:hover{
/*    opacity:0.7;*/
    color:var(--light-blue);
}
.program-page.entry-content .copy h2 a:hover,
.program-page.entry-content .copy h3 a:hover,
.program-page.entry-content .copy h4 a:hover,
.program-page.entry-content .copy h5 a:hover,
.program-page.entry-content .copy h6 a:hover{
    text-decoration:underline;
    color:var(--light-blue);
}


.container {
    width:100%;
    margin: 0 auto;
    max-width: 1672px;
    padding-left: 8rem;
    padding-right: 8rem;
}
.container-narrow {
    width:100%;
    margin: 0 auto;
    max-width: 1450px;
    padding-left: 8rem;
    padding-right: 8rem;
}
.container-fluid{
    width:100%;
    max-width:100%;
    margin: 0 auto;
    padding-left:6rem;
    padding-right:6rem;
}
.row {
    margin-right: -1.2rem;
    margin-left: -1.2rem;
}
.row > *{
    padding-right: 1.2rem;
    padding-left: 1.2rem;
}
.row.reverse-order{
    flex-direction: row-reverse !important;
}
.bg-light-blue{
    background-color: var(--light-blue);
}
.bg-blue{
    background-color: var(--blue);
}
.bg-green{
    background-color: var(--green);
}
.bg-grey{
    background-color: var(--grey);
}
.light-blue{
    color: var(--light-blue) !important;
}
.blue{
    color: var(--blue) !important;
}
.green{
    color: var(--green) !important;
}
.grey{
    color: var(--grey) !important;
}
.white{
    color: white !important;
}

/* CTA */
a.cta{
    border-radius: 6px;
    min-height: 6rem;
    padding: 0 3rem;
    min-width: 25rem;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3.2rem;
    font-family: var(--headingMedium);
    text-transform: uppercase;
    padding-top: 0.6rem;
    transition:0.2s;
}
a.cta:hover{
    transition:0.2s;
}
a.cta.bg-blue:hover{
    color:var(--green) !important;
}
.program-page a.cta.bg-blue:hover {
    color: var(--light-blue) !important;
}
a.cta.bg-green:hover{
    color:var(--blue) !important;
}
a.cta.bg-green.blue:hover{
    color:var(--white) !important;
}
a.cta-arrow{
    width: fit-content;
    display: flex;
    align-items: start;
    justify-content: center;
    font-size: 3.2rem;
    font-family: var(--headingMedium);
    text-transform: uppercase;
}
a.cta-arrow:hover{
    text-decoration:underline;
}
a.cta-arrow::before{
    content: '';
    background-image: url(../svg/cta-arrow.svg);
    width: 1.65rem;
    height: 3rem;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 1.4rem;
    top: 5px;
    position: relative;
}
blockquote{
    margin: 15rem 0;
    padding-top: 12.5rem;
    background-image: url(../svg/quotes-green.svg);
    background-size: 9.1rem 6.4rem;
    background-repeat: no-repeat;
    background-position: top left;
}
.program-page blockquote {
    background-image: url(../svg/quotes-light-blue.svg);
}
blockquote>p{
    font-size: 6.4rem !important;
    color: var(--blue);
    font-family: var(--headingMedium);
    text-transform: uppercase;
    line-height: 1.1;
}
blockquote:last-child{
    margin-bottom: 0;
}
/* HEADER */
.site-header{
    padding-top: 3.7rem;
    padding-bottom: 2.3rem;
    position: fixed;
    width: 100%;
    z-index: 99;
    transition: all 0.5s;
    transform: translateY(0%);
}
.site-header.hidden-header{
    transform: translateY(-100%);
}
.site-header.slim{
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: white;
    -webkit-box-shadow: 0px 1px 7px 1px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 1px 7px 1px rgba(0,0,0,0.3);
    box-shadow: 0px 1px 7px 1px rgba(0,0,0,0.3);
}
.site-header .row{
    align-items: center;
    justify-content:space-between;
}
.site-header .row .col-branding{
    width:21.3rem;
    position:relative;
    transition: all 0.5s;
}
.site-header .custom-logo-link .custom-logo{
    width: 100%;
}
.site-header .custom-logo-link .custom-logo:hover{
    animation: pulse 0.9s 2;
}
@keyframes pulse {
  0%,
  100% {
/*    animation-timing-function: ease-in;*/
  }
  50% {
    transform: scale(1.05);
  }
}
.site-header.slim .row .col-branding{
    width:11rem;
    transition: all 0.5s;
}
.site-header .row .col-main-menu{
    width:auto;
}
.site-header .row .col-main-menu .main-navigation{
    width:auto;
}   
.site-header .cta{
    border-radius: 6px;
    top:-0.3rem;
}
.site-header .cta a{
    border-radius: 6px;
    min-height: 5.6rem;
    padding: 0 3rem;
    min-width: 18.4rem;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3.2rem;
    font-family: var(--headingMedium);
    text-transform: uppercase;
    padding-top: 0.6rem;
    transition:0.2s;
}
.site-header #main-menu li.cta a:hover{
    transition:0.2s;
}
.site-header #main-menu li.cta.bg-green a:hover{
    color:var(--blue);
}
.site-header #main-menu li.cta.bg-blue a:hover{
    color:var(--green);
}
.site-header #main-menu li.cta a:hover{
    color:var(--blue);
    transition:0.2s;
}
.site-header .cta:last-child{
    margin-left: -2.5rem;
}
.site-header #main-menu{
/*    justify-content: flex-end;*/
    column-gap: 3.5rem;
    align-items: center;
}
#main-menu li {
    position:relative;
}
#main-menu li a{
    font-size: 3.2rem;
    text-transform: uppercase;
}
.site-header #main-menu li a{
    color: white;
    font-family: var(--headingMedium);
    text-shadow: 0px 0px 60px rgba(0, 0, 0, 0.5);
}
body.single .site-header #main-menu li:not(.cta) a,
.site-header.dark-header #main-menu li:not(.cta) a{
    color: var(--blue);
    text-shadow: 0px 0px 60px rgba(0, 0, 0, 0);
}
.site-header.slim #main-menu li:not(.cta) a{
    color: var(--blue);
    padding-top:0.4rem;
}
.site-header #main-menu li:not(.cta) a:after{
    content: "";
    display: block;
    position: absolute;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: var(--white);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    left: 0;
    z-index:10;
}
body.single .site-header #main-menu li a:after,
.site-header.dark-header #main-menu li a:after{
    background: var(--blue);
}
.site-header.slim #main-menu li a:after{
    background: var(--blue);
}
.site-header #main-menu li a:hover:after{
    -webkit-transform: scale(1);
    transform: scale(1);
}
.site-header #main-menu li.current-menu-ancestor > a:after, 
.site-header #main-menu li.current_page_item a:after,
body.single .site-header #main-menu li.current-menu-ancestor > a:after,
body.single .site-header #main-menu li.current_page_item a:after{
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* Sub-menu */
#main-menu li .sub-menu{
    display: flex;
    flex-direction: column;
    box-shadow: none;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
#main-menu li .sub-menu li,
#main-menu li .sub-menu li a{
    width: max-content;
}
.site-header #main-menu li .sub-menu li{
/*    margin: 0.5rem 0rem;*/
    margin: 0rem 0rem;
}
/* Slim */
.site-header.slim #main-menu li .sub-menu li{
    margin: 0rem 2rem;
}
.site-header.slim #main-menu li .sub-menu{
    padding-top: 1rem;
    background-color: white;
    
    -webkit-box-shadow: 0px 1px 7px 1px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 1px 7px 1px rgba(0,0,0,0.3);
    box-shadow: 0px 1px 7px 1px rgba(0,0,0,0.3);
}

.burger{
    display: none;
}

/* FOOTER */
.site-footer{
    background-color: var(--blue);
}
.site-footer .top{
    padding: 8rem 0;
    border-bottom: solid 3px white;
}
.site-footer .top .custom-logo{
    width: 13rem;
}
.site-footer .top .custom-logo:hover{
    animation: pulse 0.9s 2;
}
.site-footer .top .social{
    display: flex;
    column-gap: 3rem;
    height: 3rem;
    margin-top: 5.4rem;
}
.site-footer .top .social a img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.site-footer .top .social a:hover img{
    filter: invert(64%) sepia(92%) saturate(2642%) hue-rotate(109deg) brightness(93%) contrast(101%);
}
.site-footer .top #main-menu-footer{
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer .top #main-menu-footer li a{
    color: white;
    font-family: var(--headingMedium);
    font-size: 3rem;
    line-height: 141%;
    text-transform: uppercase;
}
.site-footer .top #main-menu-footer li.footer-none{
    display: none;
}
.site-footer .top .get-in-touch-section .title{
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--headingBold);
}
.site-footer .top .get-in-touch-section .copy{
    color: white;
    font-size: 1.9rem;
    line-height: 150%;
}
.site-footer .top .get-in-touch-section .cta{
    margin-top: 2.4rem;
}
.site-footer .middle{
    padding: 8rem 0 8rem 0;
    border-bottom: solid 3px white;
/*    display:none;*/
}
.site-footer .middle .footer-logos{
    display: flex;
    column-gap: 2rem;
    row-gap: 4rem;
    justify-content: space-between;
    flex-wrap: wrap;
}
.site-footer .middle .footer-logos .logo{
    width: 18.6rem;
    height: 12.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-footer .bottom{
    padding: 5.2rem 0;
}
.site-footer .bottom .container{
    color: white;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    justify-content: space-between;
}
.site-footer .bottom .lhs{
    display: flex;
    align-items: center;
}
.site-footer .bottom #legal-menu{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.site-footer .bottom #legal-menu li,
.site-footer .bottom #legal-menu li a{
    font-size: 1.6rem;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
}
.site-footer .bottom #legal-menu li a:hover,
.site-footer .bottom .credits a:hover{
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    color:var(--green);
}
.site-footer .bottom .copirights,
.site-footer .bottom #legal-menu li{
    position: relative;
}
.site-footer .bottom .copirights::after,
.site-footer .bottom #legal-menu li:not(:last-child)::after{
    content: "|";
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    color: white;
    margin-left: .8rem;
    margin-right: .8rem;
    font-weight: 500;
    font-style: normal;
}

/* HERO */
.hero-section.bg-img{
    /*padding-top: 40rem;
    padding-bottom: 14rem;*/
    padding-top: 24rem;
    padding-bottom: 15rem;
    position: relative;
    overflow: hidden;
/*    min-height: 80rem;*/
    min-height: 70svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-section.bg-img .overlay{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display: block;
    background-color:rgba(0,0,0,0.2);
}
.hero-section.bg-img>img:not(.green-chevron, .programs-hero-shape){
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
    z-index: 10;
}
.hero-section.bg-img>div{
    position: relative;
    z-index: 20;
}
.hero-section.bg-img>div.overlay{
    z-index: 10;
}
.hero-section h1{
    font-family: var(--headingBold);
}
.hero-section.bg-img h1{
    color: white;
    margin-bottom: 0;
    text-shadow:0px 0px 60px rgba(0,0,0,0.5);
}
.page-id-18 .hero-section.bg-img h1{
    position:relative;
}
.hero-section.bg-img .subtitle{
    margin-top: 3.7rem;
    color: white;
    text-shadow:0px 0px 60px rgba(0,0,0,0.5);
}
/*.program-hero .hero-section.bg-img .subtitle{
    margin-top: 1rem;
    font-size:9.2rem;
}*/
.hero-section.bg-img .green-chevron{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 116rem;
    z-index: 15;
}
.hero-section.bg-img::after{
    content: '';
    background-image: url(../svg/hero-white-shape.svg);
    position: absolute;
/*    bottom: -1px;*/
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5.2rem;
    background-size: cover;
    background-position: center bottom;
    z-index: 30;
}
.hero-section.no-bg{
    padding-top: 34rem;
/*    padding-top: 40rem;*/
    padding-bottom: 6rem;
    padding-bottom: 10rem;
}
.hero-section.no-bg .subtitle{
    color: var(--blue);
    margin-top:6rem;
/*    font-size:6.4rem;*/
}

/* Homepage hero */
.home .hero-section::after{
    content: '';
    background-image: url(../svg/hero-white-shape.svg); 
    position: absolute;
/*    bottom: -1px;*/
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5.2rem;
    background-size: cover;
    background-position: center bottom;
    z-index: 18;
}
.home-swiper .swiper-slide{
    overflow: hidden;
    position: relative;
    min-height: 100svh;
    height: auto;
    padding-top: 30rem;
    padding-bottom: 18rem;
    padding-top: 24rem;
    padding-bottom: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.home-swiper .swiper-slide>img:not(.green-chevron){
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
    z-index: 1;
}
.home-swiper .swiper-slide .overlay{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display: block;
    background-color:rgba(0,0,0,0.2);
    z-index:2;
}
.home-swiper .swiper-slide .container-narrow{
    position: relative;
    z-index: 20;
}
.home .hero-section{
    position: relative;
/*    overflow: hidden;*/
/*    min-height: 80rem;*/
}
.home .hero-section .swiper-wrapper{
    height:auto;
}
.home .hero-section .green-chevron{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 116rem;
    z-index: 2;
    pointer-events: none;
}
.home .hero-section .swiper-slide .title{
    color: white;
    font-size: 12.2rem;
    font-family:var(--headingBold);
    line-height: 100%;  
    text-shadow:0px 0px 60px rgba(0,0,0,0.5);
    margin-bottom:0;
}
.home .hero-section .swiper-slide .subtitle{
    margin-top: 2.5rem;
    color: white;
    margin-bottom: 4.5rem;
}
.home .hero-section .swiper-slide .cta{
    margin-top: 5.8rem;
    margin-top: 3rem;
    margin-bottom:2rem;
}
.home .hero-section .swiper-pagination-surround{
    width:100%;
    bottom: 10rem;
    position:absolute;
}
.home .hero-section .swiper-pagination-surround .swiper-pagination{
    position:relative;
    margin: 0 auto;
    text-align:left;
    max-width: 1450px;
    padding-left: 8rem;
    padding-right: 8rem;
    bottom:0;
}
.home .hero-section .swiper-horizontal .swiper-pagination-bullets .swiper-pagination-bullet, 
.home .hero-section .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 6rem;
    height: 0.6rem;
    background-color: white;
    border-radius: 0;
    opacity: 1;
}
.home .hero-section .swiper-horizontal .swiper-pagination-bullets .swiper-pagination-bullet-active{
    background-color: var(--blue);
}
/* Programs hero */
.page-id-18 .entry-header{
    overflow: hidden;    
    padding-bottom: 6rem;
    position:relative;
}
.page-id-18 .hero-section.bg-img{
    overflow: visible;
}
.page-id-18 .entry-header:after{
    content: 'Image credit: Maik Giersch';
    font-size: 2.7rem;
    position: absolute;
    bottom: 20rem;
    right: 0;
    font-family: var(--headingMedium);
    z-index: 100;
    text-transform: uppercase;
    padding: 0.5rem 1rem 0.2rem 1rem;
    background-color: rgba(255, 255, 255, 0.7)
}
.page-id-18 .hero-section.bg-img::after{
    background-image: url(../svg/hero-blue-shape2.svg);
    height: 15.7rem;
    bottom: -5.5rem;
}   
.hero-section.bg-img .programs-hero-shape{
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50rem;
    z-index: 15;
}


.page-id-18 .entry-content .section-text h4{
    color:var(--light-blue);
}
.page-id-18 .entry-content .section-text .inner {
    max-width: 100%;
}

/* Programs navigation */
.programs-nav-container{
    position: absolute !important;
    bottom: -0.7rem;
    left: 0;
    width: 100%;
    z-index: 50;
    overflow-x: auto;
}

/* width */
.programs-nav-container::-webkit-scrollbar {
  height: 4px;
}

/* Track */
.programs-nav-container::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.programs-nav-container::-webkit-scrollbar-thumb {
  background: var(--light-blue); 
  border-radius: 10px;
}

/* Handle on hover */
.programs-nav-container::-webkit-scrollbar-thumb:hover {
  background: var(--light-blue);; 
}

.programs-nav{
    width:100%;
    margin: 0 auto;
    max-width: 1450px;
    padding-left: 8rem;
    padding-right: 8rem;
    display: flex;
    list-style: none;
    white-space: nowrap;
}
.programs-nav li a{
    color: white;
    font-size: 3.6rem;
    font-family: var(--headingMedium);
    text-transform: uppercase;
}
.programs-nav li:last-child a {
    margin-right: 8rem;
}
.programs-nav li a:hover{
    color: var(--light-blue);
}
.programs-nav li:not(:last-child) a::after {
    content: "|";
    font-size: 3.6rem;
    letter-spacing: 0.03em;
    color: var(--light-blue);
    margin-left: 2rem;
    margin-right: 2rem;
    font-weight: 500;
    font-style: normal;
}
.programs-nav li.active a{
    color: var(--light-blue);
}
.program-hero{
    overflow: hidden;
    padding-bottom: 6rem;
}
.program-hero .hero-section.bg-img{
    overflow: visible;
}
.program-hero .hero-section.bg-img::after{
    background-image: url(../svg/hero-blue-shape2.svg);
    height: 15.7rem;
    bottom: -5.5rem;
    position: absolute;
    left: 0;
    width: 100%;
    background-size: cover;
    background-position: left bottom;
    z-index: 18;
}  
.program-hero .hero-content .inner{
    max-width: 121.4rem;
}
body.page-id-18 .section-text {
    margin: 15rem 0;
}

/* FLEXIBLE CONTENT */

/* TEXT SECTION */
.section-text{
    margin: 19rem 0;
}
.section-text .inner{
    max-width:121.4rem;
    max-width:1214px;
}
/*.section-text :is(h1,h2,h3,h4,h5,h6){
    margin-bottom: 0;
}*/
/*.section-text :is(h1,h2,h3,h4,h5,h6) + *{
    margin-top: 4rem;
}*/
body.home .entry-content > .section-text:first-child .inner{
    max-width:100%;
}
body.home .entry-content > .section-text:first-child .inner p{
    max-width:121.4rem;
}
.section-text h1{
    font-size: 7.2rem;
    margin-top: 8rem;
    margin-bottom: 4rem;
}
.section-text .copy + .cta{
    margin-top: 5.6rem;
}
.section-text .cta{
    margin-top: 1.1rem;
}
.section-text .copy p:first-of-type{
    font-size: 2.7rem;
}
.section-text .copy > *:last-child{
    margin-bottom:0;
}
.section-text .copy > *:last-child >img{
    margin-bottom:0;
}
.section-text .copy > *:last-child h6{
    margin-bottom:0;
}
.section-text iframe {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top:14rem;
    margin-bottom:14rem;
    margin-top:8rem;
    margin-bottom:8rem;
}
.section-text .copy > *:first-child iframe{
    margin-top:0;
}
.section-text .copy > *:last-child iframe{
    margin-bottom:0;
}
.section-text h2 + p iframe,
.section-text h3 + p iframe {
    margin-top:6rem;
}
/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
    .section-text iframe {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
    }

    .section-text iframe iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
.program-page > .section-text{

}

/* BANNER MESSAGE */
.section-banner-message{
    background: var(--gradient);
    padding: 13rem 0rem 11rem 0rem;
    text-align: center;
    transition:0.2s;
}
a .section-banner-message{
    padding: 6rem 0rem 6.2rem 0rem;
}
/*.section-banner-message:hover{
    background: var(--gradient-hover);
    transition:0.2s;
}*/
#newsletter-banner.section-banner-message{
    background: var(--gradient);
    padding: 6rem 0rem 6.2rem 0rem;
    text-align: center;
}
.section-banner-message h2{
    font-size: 9.2rem;
}
.section-banner-message > *:last-child{
    margin-bottom:0;
}
a > .section-banner-message{
    text-decoration: underline;
    text-decoration-color: white;
    text-underline-offset: 1rem;
    transition: 0.2s;
    margin-top:19rem;
}
a:hover > .section-banner-message{
    text-decoration-color: var(--blue);
    transition: 0.2s;
}
a > .section-banner-message .copy > *{
    color:var(--white);
    transition: 0.2s;
} 
.section-banner-message .copy > *:last-child,
a > .section-banner-message .copy > *:last-child{
    margin-bottom:0;
} 
a:hover > .section-banner-message .copy > *{
    color:var(--blue);
    transition: 0.2s;
}
a > .section-banner-message .copy > h2,
a > .section-banner-message .copy > h3,
a > .section-banner-message .copy > h4,
a > .section-banner-message .copy > h5,
a > .section-banner-message .copy > h6{
    line-height:1.2
}
#newsletter-banner.section-banner-message{
    transition: 0;
}
#newsletter-banner.section-banner-message .copy{
    text-decoration: underline;
    text-decoration-color: white;
    text-underline-offset: 1rem;
    transition:0s;
}
.section-banner-message :is(h1,h2,h3,h4,h5,h6){
    text-transform: uppercase;
}
.section-banner-message :is(h1,h2,h3,h4,h5,h6,p){
    color: white;
    margin-bottom: 0;
}
.section-banner-message :is(h1,h2,h3,h4,h5,h6) + *{
    margin-top: 3.7rem;
}
.section-banner-message#newsletter-banner{
    font-size: 5.6rem;
    color: white;
    font-family: var(--headingMedium);
    text-transform: uppercase;
    cursor: pointer;
    transition:0s;
    margin-top: 19rem;
}
body.page-id-245 .section-banner-message#newsletter-banner{
    margin-top: 0rem;
}
#newsletter-banner.section-banner-message:hover .copy {
    text-decoration-color: var(--blue);
    transition:0s;
}
.section-banner-message#newsletter-banner:hover{
    color: var(--blue);
/*    transition:0.2s;*/
}

/* Newsletter pop up */
#popupNewsletterBg{
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: #000000cc;
    z-index: 1;
    top: 0;
    left: 0;
    z-index: 1000;
}
#popupNewsletterContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 110rem;
    padding: 9rem 8rem 9rem 8rem;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}
#popupNewsletterContainer form{
/*    margin-top: 4rem;*/
}
#popupNewsletterContainer #popupNewsletterContent form h4{
    text-transform:uppercase;
    font-family: var(--headingBold);
    margin-bottom:4rem;
}
#popupNewsletterContainer #popupNewsletterContent > h4{
    text-transform:uppercase;
    font-family: var(--headingBold);
    margin-bottom:4rem;
}
#popupNewsletterContainer #popupNewsletterContent > p{
    font-size:2.3rem;
    margin-bottom:4rem;
}

#closeNewsletterPopup {
    position: absolute;
    top: 3.5rem;
    right: 4rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--green);
    font-size: 2rem;
    -webkit-text-stroke: 0.4rem var(--green);
}
#closeNewsletterPopup:hover {
    color: var(--blue);
    -webkit-text-stroke: 0.4rem var(--blue);
}

/* IMAGE TEXT SECTION */
.section-image-text{
    margin: 19rem 0;
}
.section-image-text h2{
    margin-bottom: 7.5rem;
}
.section-image-text.style-50_50 .blocks>.row:not(:last-child){
    margin-bottom: 14rem;
}
.section-image-text.style-50_50 .blocks .col-50-50-image{
    padding-right:7rem;
}
.section-image-text.style-50_50 .blocks .reverse-order .col-50-50-image{
    padding-left:7rem;
    padding-right:1.2rem;
}
.section-image-text.style-50_50 .blocks .image{
    padding-bottom: 70%;
    position: relative;
    overflow:hidden;
}
.section-image-text.style-50_50 .blocks .reverse-order .image{
    margin: 0 0 0 auto;
}
.section-image-text .blocks .image>img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.section-image-text.style-50_50 .blocks .col-50-50-copy{
    padding-left:7rem;
}
.section-image-text.style-50_50 .blocks .reverse-order .col-50-50-copy{
    padding-right:7rem;
    padding-left:1.2rem;
}
.section-image-text.style-50_50 .blocks .copy h3{
    font-family: var(--headingBold);
    padding-top: 4.2rem;
    border-top: 5px solid var(--green);
    margin-bottom: 3rem;
}
.program-page .section-image-text.style-50_50 .blocks .copy h3{
    border-top: 5px solid var(--light-blue);
}
.section-image-text.style-50_50 .blocks .copy p:last-child{
    margin-bottom:0;
}
.section-image-text.style-50_50 .blocks .copy p + .cta{
    margin-top: 4.7rem;
}
.section-image-text.style-50_50 .blocks .copy .cta{
    margin-top: 1.1rem;
}
/*.section-image-text.style-30_70 .blocks>.row{
    justify-content: space-between;
}*/
.section-image-text.style-30_70 .blocks>.row:not(:last-child) {
    margin-bottom: 14rem;
}
.section-image-text.style-30_70 .blocks .image{
    padding-bottom: 150%;
    position: relative;
    overflow:hidden;
}
.section-image-text.style-30_70 .blocks .image::after{
    content: '';
    background-image: url(../svg/image-text-section-shape.svg);
    width: calc(100% + 2px);
    height: 5.2rem;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    top: 0;
    left: -1px;
    background-position: top center;
}
.section-image-text.style-30_70 .blocks .reverse-order .image::after {
    transform: scaleX(-1);
}
.section-image-text.style-30_70 .blocks .col-30-70-copy{
    padding-left:12.8rem;
    padding-top:5rem;
}
.section-image-text.style-30_70 .blocks .reverse-order .col-30-70-copy{
    padding-right:12.8rem;
    padding-left:1.2rem;
    padding-top:5rem;
}
.section-image-text.style-30_70 .blocks .col-30-70-copy .copy > *:last-child{
    margin-bottom:0;
}

/* CAROUSEL STATS BANNER */
.stats-banner-section{
    background-color: var(--blue);
    padding-top: 19rem;
    padding-bottom: 19rem;
    position: relative;
    margin-top: 19rem;
    margin-bottom: 19rem;
}
.stats-banner-section::before{
    content: '';
    background-image: url(../svg/carousel-white-shape-before.svg);
    position: absolute;
/*    top: -1px;*/
    top: 0px;
    left: 0;
    width: 100%;
    height: 5.2rem;
    background-size: cover;
    background-position: left bottom;
    z-index: 18;
}
.stats-banner-section::after {
    content: '';
    background-image: url(../svg/carousel-white-shape-after.svg);
    position: absolute;
/*    bottom: -1px;*/
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5.2rem;
    background-size: cover;
    background-position: right top;
    z-index: 18;
}
.stats-banner-section .title{
    color: white;
    margin-bottom: 8rem;
}
.swiper-button-next, .swiper-button-prev{
    width: 3rem;
    height: 4.88rem;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    content: '';
    background-image: url(../svg/swiper-nav-next.svg);
    background-size: 3rem 4.88rem;
    width: 3rem;
    height: 4.88rem;
    transition: opacity .2s ease;
    transition: opacity .2s ease;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    content: '';
    background-image: url(../svg/swiper-nav-prev.svg);
    background-size: 3rem 4.88rem;
    width: 3rem;
    height: 4.88rem;
    transition: opacity .2s ease;
    transition: opacity .2s ease;
}
.swiper-button-next:hover:after, .swiper-rtl .swiper-button-prev:hover:after,
.swiper-button-prev:hover:after, .swiper-rtl .swiper-button-next:hover:after{
    transition: opacity .2s ease;
    transition: opacity .2s ease;
    opacity:0.7;
}
.stats-banner-section .swiper-button-next,.stats-banner-section .swiper-button-prev{
    filter: invert(96%) sepia(58%) saturate(2%) hue-rotate(182deg) brightness(115%) contrast(100%);
}
.stats-banner-section .title + .swiper.with-nav{
    margin-top: -6rem;
}
.stats-banner-section .swiper.with-nav{
    padding-top: 10rem;
}
.stats-banner-section .swiper-navigation{
    width: 11rem;
    position: absolute;
    top: 3.5rem;
    right: 0;
}
/* CAROUSEL 50/50 BANNER */
.carousel-5050-banner-section{
    position: relative;
    background-color: var(--green);
    margin-top: 19rem;
    margin-bottom: 0rem;
}
.carousel-5050-banner-section .swiper-slide{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    min-height: 80rem;
    background-color: var(--green);
}
.program-page .carousel-5050-banner-section .swiper-slide{
    background-color: var(--light-blue)
}
.carousel-5050-banner-section .image{
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 50%;
}
.carousel-5050-banner-section .image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.carousel-5050-banner-section .copy{
    width: 50%;
    position: relative;
}
.carousel-5050-banner-section .copy::before{
    content: '';
    background-image: url(../svg/swiper-nav-prev.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 4.5rem;
    height: 8.4rem;
    position: absolute;
    left: -4.5rem;
    top: calc(50% - 4.2rem);
    filter: invert(61%) sepia(25%) saturate(3198%) hue-rotate(108deg) brightness(93%) contrast(101%);
}
.carousel-5050-banner-section .copy blockquote{
    background-image: url(../svg/quotes-blue.svg);
    background-size: 7.4rem 5.1rem;
    padding-top: 10.5rem;
    margin: 0;
}
.carousel-5050-banner-section .copy blockquote>p{
    color: white;
    font-size: 4.2rem !important;
}
.carousel-5050-banner-section .copy blockquote>h6{
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 3rem;
    font-size: 3rem;
}
.carousel-5050-banner-section .copy .inner{
    padding: 12rem;
/*    max-width: 59rem;*/
    margin: 0 auto;
    box-sizing: content-box;
}
.carousel-5050-banner-section .copy .inner > *:first-child{
    margin-top:0;
}
.carousel-5050-banner-section .copy .inner > *:last-child{
    margin-bottom:0;
}
.carousel-5050-banner-section .copy .inner *{
/*    color:var(--white);*/
}
.carousel-5050-banner-section .copy :is(h2,h3,h4,h5,h6,p){
    color: white;
}
.carousel-5050-banner-section .copy .inner h4{
    margin-top:2.5rem;
}
.carousel-5050-banner-section .copy h6{
    text-transform:none;
    margin-bottom:0;
}
.carousel-5050-banner-section .copy p{
    line-height: 140%;
}
.carousel-5050-banner-section .copy h6{
    color: var(--blue);
}
.carousel-5050-banner-section .swiper-navigation {
    width: 11rem;
    position: absolute;
    top: 6rem;
    right: 2.5rem;
}
.carousel-5050-banner-section .swiper-button-next, .carousel-5050-banner-section .swiper-button-prev {
    filter: invert(96%) sepia(58%) saturate(2%) hue-rotate(182deg) brightness(115%) contrast(100%);
}
.carousel-5050-banner-section .cta{
    margin-top: 5rem;
}
.entry-content .carousel-5050-banner-section .copy li a:hover,
.entry-content .carousel-5050-banner-section .copy p a:hover{
    opacity:0.7;
    color:var(--white);
}

/* ACCORDION */
.accordion-section{
    margin-top: 19rem;
    margin-bottom: 19rem;
}
.accordion-section h3{
    color: var(--blue);
    margin-bottom: 10rem;
    font-family: var(--headingBold);
}
.entry-header-no-bg + .entry-content .accordion-section{
    margin-top: 5rem;
}
.accordion-section .accordion .title{
    text-transform: uppercase;
    padding: 6rem 0 5rem 0;
    margin-bottom: 0;
    border-top: 3px solid var(--green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:0.2s;
    color: var(--green);
    margin-bottom: 0rem;
    font-family: var(--headingMedium);
    column-gap: 4rem;
}
.program-page .accordion-section .accordion .title{
    border-top: 3px solid var(--light-blue);
    color:var(--light-blue);
}
.program-page .accordion-section .accordion:last-child {
    border-bottom: 3px solid var(--light-blue);
}
.accordion-section .accordion .title::after{
    content: '';
    display:block;
    width:2.7rem;
    height:2.7rem;
    background-image:url(../svg/%2b.svg);
    background-size:contain;
    background-position: center;
    background-repeat:no-repeat;
    font-size: 6rem;
    font-weight: 700;
    color: var(--green);
    padding-left: 2.5rem;
    transition: all 0.4s;
    transform-origin: center;
}
.program-page .accordion-section .accordion .title::after {
    background-image: url(../svg/%2blightblue.svg);
}
.accordion-section .accordion .title.active:after{
    transform: rotate(-45deg);
}
.accordion-section .accordion:last-child{
    border-bottom: 3px solid var(--green);
}
.accordion-section #wpcf7-f339-p26-o1{
    margin-top:1rem;    
}
.accordion-section #wpcf7-f332-p26-o2{
    margin-top:1rem;
}
.accordion-section .accordion .copy{
    display: none;
    padding-bottom: 5rem;
    top: -1rem;
    position: relative;
}
.accordion-section .accordion .copy > *:last-child{
    margin-bottom:0;
}
.accordion-section .accordion .cta{
    margin-top: 5rem;
}
body.page-id-26 .accordion form h4{
    display:none;
}
body.page-id-26 .accordion #donate-button-container #donate-button img {
    margin: 1rem 0 0rem 0;
}
body.page-id-26 .accordion #donate-button-container #donate-button img:hover {
    animation: pulse 0.9s 2;
}

/* TILES CAROUSEL */
.tiles-carousel-section{
    margin: 19rem 0;
}
.tiles-carousel-section.bg-green{
    padding: 19rem 0;
    position: relative;
}
.tiles-carousel-section.bg-green::before{
    content: '';
    background-image: url(../svg/carousel-white-shape-before.svg);
    position: absolute;
/*    top: -1px;*/
    top: 0px;
    left: 0;
    width: 100%;
    height: 5.2rem;
    background-size: cover;
    background-position: right bottom;
    z-index: 18;
}
.tiles-carousel-section.bg-green::after{
    content: '';
    background-image: url(../svg/carousel-white-shape-after.svg);
    position: absolute;
/*    bottom: -1px;*/
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5.2rem;
    background-size: cover;
    background-position: right top;
    z-index: 18;
}
.tiles-carousel-section h3{
    font-family: var(--headingBold);
    margin-bottom: -6rem;
    padding-right:13rem;
}
.tiles-carousel-section.bg-green h3{
    color: white;
}
.tiles-carousel-section .swiper{
    padding-top: 11rem;
}
.tiles-carousel-section .swiper-slide .image{
    width: 100%;
    padding-bottom: 60%;
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem;
}
.tiles-carousel-section .swiper-slide .image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.tiles-carousel-section .swiper-slide h5{
    font-size: 4.2rem;
    color: var(--blue);
    text-transform: uppercase;
}
.tiles-carousel-section .swiper-slide h2,
.tiles-carousel-section .swiper-slide h3,
.tiles-carousel-section .swiper-slide h4,
.tiles-carousel-section .swiper-slide h5,
.tiles-carousel-section .swiper-slide h6{
    color:var(--white);
}
.tiles-carousel-section .swiper-slide p{
    line-height: 150%;
}
.tiles-carousel-section.bg-green p{
    color: white;
}
.tiles-carousel-section .swiper-slide .copy > *:last-child{
    margin-bottom:0;
}
.tiles-carousel-section .swiper-navigation {
    width: 11rem;
    position: absolute;
    top: 2.5rem;
    right: 0;
}
.tiles-carousel-section .swiper-button-next, .tiles-carousel-section .swiper-button-prev {
    filter: invert(61%) sepia(25%) saturate(3198%) hue-rotate(108deg) brightness(93%) contrast(101%);
}
.tiles-carousel-section.bg-green .swiper-button-next, .tiles-carousel-section.bg-green .swiper-button-prev {
    filter: invert(96%) sepia(58%) saturate(2%) hue-rotate(182deg) brightness(115%) contrast(100%);
}
/* TILES CAROUSEL - ALTETRNATIVE PRESENTATION */
.tiles-carousel-section.alternative-presentation .swiper-slide{
/*    margin-right:0 !important;*/
    height:auto;
/*    width:calc(33.33333333%) !important;*/
    color:var(--white);
    padding:6rem 4rem;
}
.tiles-carousel-section.alternative-presentation .swiper-slide:nth-child(3n+1){
    background-color:var(--green);
}
.tiles-carousel-section.alternative-presentation .swiper-slide:nth-child(3n+2){
    background-color:var(--blue);
}
.tiles-carousel-section.alternative-presentation .swiper-slide:nth-child(3n+3){
    background-color:var(--light-blue);
}
.tiles-carousel-section.alternative-presentation .swiper-slide .copy ul li::marker, 
.tiles-carousel-section.alternative-presentation .swiper-slide .copy ol li::marker,
.tiles-carousel-section.alternative-presentation .swiper-slide .copy *{
    color:var(--white) !important;
}
.tiles-carousel-section.alternative-presentation .swiper-slide .copy > h5:first-of-type {
    font-size: 5.6rem;
    font-family:var(--headingBold);
    color: var(--white);
    text-transform: uppercase;
    padding-left: 7rem;
    padding-bottom:3rem;
    background-image:url('../svg/arrow_double.svg');
    background-position:top +0.6rem left;
    background-size:4.6rem auto;
    background-repeat:no-repeat;
    border-bottom:0.5rem solid var(--white);
    margin-bottom:6rem;
    margin-top:0;
}
.tiles-carousel-section.alternative-presentation .swiper-slide .copy h5{
    margin-top: 6rem;
    margin-bottom: 2rem;
}
.tiles-carousel-section.alternative-presentation .swiper-slide .copy h4{
    text-transform: uppercase;
    font-size: 5.6rem;
    margin-top: 6rem;
    margin-bottom: 2rem;
}
.tiles-carousel-section.alternative-presentation .swiper-slide .copy ul, 
.tiles-carousel-section.alternative-presentation .swiper-slide .copy ol {
    padding-left: 0;
    margin-top: 2rem;
    margin-bottom: 3rem;
    line-height:1.2;
}
.tiles-carousel-section.alternative-presentation .swiper-slide .copy ul li, 
.tiles-carousel-section.alternative-presentation .swiper-slide .copy ol li{
}
.tiles-carousel-section.alternative-presentation .swiper-slide .copy img {
    width: auto;
    margin: 3rem 0 -3.5rem 0;
    height: 6rem;
}
.tiles-carousel-section.alternative-presentation .swiper-slide .copy p:first-of-type img {
    margin: 0rem 0 -3.5rem 0;
}



/* LOGOS SECTION */
.logos-section{
    margin-top: 19rem;
    margin-bottom: 19rem;
}
/*.entry-header-no-bg + .entry-content .logos-section{
    margin-top: 8rem;
}*/
.logos-section .intro{
    margin-bottom: 8rem;
}
.logos-section .intro h3{
    font-size:9.2rem;
}
.logos-section .row{
    margin: 0;
    border-top: 1px solid #C8C8C8;
    border-left: 1px solid #C8C8C8;
}
.logos-section .row > div{
    padding: 0;
}
.logos-section .logo{
    border-right: 1px solid #C8C8C8;
    border-bottom: 1px solid #C8C8C8;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.logos-section .logo img{
    max-width:18rem;
    max-height:15rem;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
}
.logos-section a:hover .logo img{
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transform: scale(1.05);
}
.logos-section .logo::after{
    content: '';
    display: block;
    padding-bottom: 100%;
}

/* TEAM PAGE */
.page-id-245 .hero-section.bg-img::after{
    background-image: url(../svg/team-hero-shape.svg);
}
.team-pop-up {
    display: none;
    width: 100%;
    min-height: 100vh;
    background-color: white;
    padding-left:0;
    padding-right:0;
    padding-top: 16rem;
    padding-bottom: 16rem;
    overflow-y: auto;
/*    justify-content: center;*/
}
.fancybox__slide {
    overflow: hidden;
}
.team-pop-up{

}

/*.team-pop-up::-webkit-scrollbar {
  width: 14px;
}
.team-pop-up::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px grey; 
  box-shadow: inset 0 0 5px grey; 
  border-radius: 0px;
  background: #36365a; 
} 
.team-pop-up::-webkit-scrollbar-thumb {
  background: var(--light-blue); 
  border-radius: 10px;
}
.team-pop-up::-webkit-scrollbar-thumb:hover {
  background: var(--light-blue); 
}*/

.team-pop-up .image{
    width: 100%;
    padding-bottom: 100%;
    position: relative;
        background: var(--gradient);
}
.team-pop-up .col-image img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.team-pop-up .col-image .image:after {
    content: '';
    background-image: url(../svg/swiper-nav-prev.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 2rem;
    height: 3.9rem;
    position: absolute;
    right: -2rem;
    top: calc(50% - 1.95rem);
    filter: invert(61%) sepia(25%) saturate(3198%) hue-rotate(108deg) brightness(93%) contrast(101%);
    transform: rotate(180deg);
}
.team-pop-up .col-copy{
    padding-left:10rem;
}
.team-pop-up .title{
    font-family: var(--headingBold);
}
.team-pop-up .job-title{
    color: var(--blue);
    font-size: 4.2rem;
    text-transform: uppercase;
    margin-bottom: 4.4rem;
}
.team-pop-up .bio p{
    line-height: 150%;
}
.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev{
    transform: translateY(0%);
}
.fancybox__content>.f-button.is-close-btn, .f-button:hover:not([disabled]) {
    /* position: fixed; */
    top: 3.6rem;
    right: 5.6rem;
    opacity: 1;
    --f-button-color: var(--blue);
    --f-button-hover-color: var(--blue);
    --f-button-width: 5.4rem;
    --f-button-height: 5.4rem;
    --f-button-svg-width: 5.4rem;
    --f-button-svg-height: 5.4rem;
}
.f-button:hover:not([disabled]){
    background-color: transparent;
    transform: scale(1);
}
.fancybox__nav{
    position: absolute;
    top: 4rem;
    left: 6rem;
    width: 14rem;
    filter: invert(6%) sepia(47%) saturate(5582%) hue-rotate(236deg) brightness(96%) contrast(118%);
}
.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 0px;
}
.team-teasers{
    background-color: var(--blue);
    padding: 18rem 0 24rem 0;
}
.team-teasers > .container > .row{
    row-gap: 12rem;
}
.team-teasers > .container > .row h3{
    margin-bottom: -6rem;
    margin-top: 15rem;
    color:var(--green);
}
/*.team-teasers > .container > .row:nth-child(2){
    margin-top:-6rem;
}*/
.team-teasers > .container > .row:nth-child(2) > h3{
    margin-top: 0rem;
}
.team-teasers .team-member{
    display: flex;
}
.team-teasers .col-team-member{
    padding-right:2.5rem;
}
.team-teasers .team-member .image{
    width: 40%;
    padding-bottom: 40%;
/*    overflow: hidden;*/
    position: relative;
    background: var(--gradient);
    height:0;
}
.team-teasers .team-member .image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.team-teasers .team-member .image:after{
    content: '';
    background-image: url(../svg/swiper-nav-prev.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 2rem;
    height: 3.9rem;
    position: absolute;
    right: -2rem;
    top: calc(50% - 1.95rem);
    filter: invert(61%) sepia(25%) saturate(3198%) hue-rotate(108deg) brightness(93%) contrast(101%);
    transform: rotate(180deg);
}
.team-teasers .team-member .inner{
    width: 60%;
    padding: 0rem 2rem 0rem 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.team-teasers .team-member .title{
    text-transform: uppercase;
    font-size: 4.2rem;
    margin-bottom: 0.6rem;
}
.team-teasers .team-member .job-title{
    margin-bottom: 0;
    color: white;
/*    text-transform: uppercase;*/
    font-size: 3rem;
    line-height: 1.1;
}
.team-filters{
    margin-bottom: 16rem;
    text-align:center;
}
.team-filters a{
    color: #ffffff;
    font-size: 5.6rem;
    font-family: var(--headingMedium);
    text-transform: uppercase;
}
.team-filters a.active,
.team-filters a:hover{
    color: var(--green);
}
.team-filters a:not(:last-child)::after {
    content: "|";
    font-size: 5.4rem;
    letter-spacing: 0.03em;
    color: #C8C8C8;
    margin-left: 3.5rem;
    margin-right: 3.5rem;
    font-weight: 500;
    font-style: normal;
}
.team-filters a.active::after{
    color: var(--green);
}

/* NEWS PAGE */
.news-teasers{
    margin-top: 12rem;
    margin-bottom: 18rem;
}
.news-teasers>.row{
    row-gap: 13rem;
}
.news-teasers h4{
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 5.6rem;
}
.news-teasers .post-teaser .image{
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
}
body.home .news-carousel .swiper-slide .image:after{
    content:none;
}
.news-teasers .post-teaser .image:after,
.news-carousel .swiper-slide .image:after,
.featured-news-carousel .swiper-slide a .image:after{
    content:'';
    font-size:3rem;
    color:var(--blue);
    background-color:rgba(0,203,111,0.9);
    padding:0.8rem 1.5rem 0.3rem 1.5rem;
    position:absolute;
    top:0;
    left:0;
    font-family:var(--headingMedium);
    text-transform:uppercase;
}
.news-teasers a.type-news .post-teaser .image:after,
.news-carousel .swiper-slide a.type-news .image:after,
.featured-news-carousel .swiper-slide a.type-news .image:after,
a.type-news .image:after{
    content:'News';
}
.news-teasers a.type-events .post-teaser .image:after,
.news-carousel .swiper-slide a.type-events .image:after,
.featured-news-carousel .swiper-slide a.type-events .image:after,
a.type-events .image:after{
    content:'Event';
}
.news-teasers a.type-awards .post-teaser .image:after,
.news-carousel .swiper-slide a.type-awards .image:after,
.featured-news-carousel .swiper-slide a.type-awards .image:after,
a.type-awards .image:after{
    content:'Award';
}
.news-teasers a.type-press-releases .post-teaser .image:after,
.news-carousel .swiper-slide a.type-press-releases .image:after,
.featured-news-carousel .swiper-slide a.type-press-releases .image:after,
a.type-press-releases .image:after{
    content:'Press release';
}

.news-teasers .post-teaser .image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
}
.news-teasers a:hover .post-teaser .image img{
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transform: scale(1.04);
}
.news-teasers .post-teaser .title{
    font-size: 4.2rem;
    font-family: var(--headingMedium);
    color: var(--blue);
    line-height: 120%;
    text-transform: uppercase;
    margin-top: 5rem;
}
.news-teasers .post-teaser .date{
    font-size: 4.2rem;
    font-family: var(--headingMedium);
    color: var(--green);
    text-transform: uppercase;
}
.pagination{
    margin-bottom: 18rem;
    font-size: 5.6rem;
    font-family: var(--headingMedium);
    justify-content: center;
}
.pagination .current{
    text-decoration: underline;
}
.pagination .inner{
    display: flex;
    justify-content: center;
    column-gap: 4rem;
}
.pagination .next-arrow a, .pagination .prev-arrow a {
    width: 100%;
    height: 100%;
    display: block;
}
.pagination .next-arrow {
    width: 4.4rem;
    height: 4.4rem;
    position: relative;
}
.pagination .next-arrow::after{
    content: '>>';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.pagination .prev-arrow {
    width: 4.4rem;
    height: 4.4rem;
    position: relative;
}
.pagination .prev-arrow::after{
    content: '<<';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.news-filters{
    margin-top: 2.7rem;
}
.news-filters a{
    color: white;
    font-size: 3.6rem;
    font-family: var(--headingMedium);
    text-transform: uppercase;
}
.news-filters a.active{
    color: var(--green);
}
.news-filters a:not(:last-child)::after {
    content: "|";
    font-size: 3.6rem;
    letter-spacing: 0.03em;
    color: white;
    margin-left: 2rem;
    margin-right: 2rem;
    font-weight: 500;
    font-style: normal;
}
.news-filters a.active::after{
    color: var(--green);
}

.events-filters{
    margin-bottom: 5.6rem;
}
.events-filters a{
    font-size: 5.6rem;
    font-family: var(--headingMedium);
    text-transform: uppercase;
    color: rgba(0, 0, 63, 0.30);
}
.events-filters a.active{
    color: var(--blue);
}
.events-filters a:not(:last-child)::after {
    content: "|";
    font-size: 5.6rem;
    letter-spacing: 0.03em;
    color: var(--green);
    margin-left: 2rem;
    margin-right: 2rem;
    font-weight: 500;
    font-style: normal;
}
/* POST SINGLE PAGE */
.single main article.post .hero-section h5{
    text-transform:uppercase;
    margin-bottom: 3.5rem;
}
.single .hero-section.no-bg{
    padding-bottom: 0rem;
    padding-top: 30rem;
}
.single .hero-content h1{
    color: var(--blue);
    font-family: var(--headingMedium);
    margin-bottom:0;
}
.single .post-thumbnail{
    margin-top: 3rem;
    margin-bottom: 4.5rem;
}
.single .entry-content {
    margin-bottom: 17rem;
}
.single .entry-content p:first-of-type{
    font-size: 2.7rem;
}
.single .entry-content p a {
    font-family: var(--bold);
    text-decoration: underline;
}
.single .entry-content p a:hover {
    color: var(--green);
}
.single .entry-content img{
    margin-top: 7rem;
    margin-bottom: 7rem;
    width:auto !important;
    height:auto !important;
    margin-left:auto;
    margin-right:auto;
    display:block;
}
.single .entry-content img.aligncenter{
    margin-top: 5rem;
    margin-bottom: 6rem;
}
.single .entry-content figure{
    margin:5rem 0 6rem 0;
}
.single .entry-content figure img{
    width: 100%;
    margin: 0;
}
.single .entry-content figure figcaption{
    font-size:1.6rem;
    line-height:1.2;
    margin-top:0;
    padding:1.3rem 0;
    text-align:left;
    border-bottom:2px solid var(--blue);
}
.single .entry-content blockquote{
    margin: 7rem 0;
    background-size: 6rem auto;
    padding-top: 8rem;
}
.single .entry-content blockquote>p{
    font-size: 4.2rem !important;
}
.single .entry-content blockquote>h6{
    margin-top:3rem;
}
.single .entry-content h2{
    margin-top: 8rem;
    margin-bottom: 4rem;
    font-size: 7.2rem;
}
.single .entry-content h3{
    background: var(--gradient);
    padding: 6rem;
    text-align: center;
    color: white;
    text-transform: uppercase;
    margin: 6rem 0 5rem 0;
}
.single .entry-content h4{
    text-transform: uppercase;
    font-size: 5.6rem;
    margin-top:6rem;
    margin-bottom: 3.5rem;
}
.single .entry-content h5{
    text-transform: uppercase;
    font-size: 4.2rem;
    margin-top:5.5rem;
    margin-bottom: 3rem;
}
.single .entry-content h6{
    text-transform: uppercase;
    font-size: 3.6rem;
    margin-top:5rem;
    margin-bottom: 3rem;
}
.single .entry-content h2 a,
.single .entry-content h3 a,
.single .entry-content h4 a,
.single .entry-content h5 a,
.single .entry-content h6 a{
    text-decoration:underline;
}
.single .entry-content h2 a:hover,
.single .entry-content h3 a:hover,
.single .entry-content h4 a:hover,
.single .entry-content h5 a:hover,
.single .entry-content h6 a:hover{
    opacity:0.7;
}
.single .entry-content ul,
.single .entry-content ol{
    padding-left:0;
    margin-top:4rem;
    margin-bottom:4rem;
}
.single .entry-content ul li,
.single .entry-content ol li{
    margin-bottom:1rem;
}
.single .entry-content ul li:last-child,
.single .entry-content ol li:last-child{
    margin-bottom:0rem;
}
.single .entry-content ul li::marker,
.single .entry-content ol li::marker{
    color:var(--green);
}
.single .entry-content ol li::marker{
    font-family:var(--headingBold);
    font-size:2.3rem;
}
.single .entry-content iframe {
    display: block;
    max-width: 100%;
    max-width: 90rem;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top:14rem;
    margin-bottom:14rem;
    margin-top:8rem;
    margin-bottom:8rem;
    margin-left:auto;
    margin-right:auto;
}

.single .entry-content > *:first-child iframe{
    margin-top:0;
}
.single .entry-content > *:last-child iframe{
    margin-bottom:0;
}
.single .entry-content h2 + p iframe,
.single .entry-content h3 + p iframe {
    margin-top:6rem;
}
.share-section{
    display: flex;
    align-items: flex-start;
}
.share-section.top{
    margin-bottom: 3rem;
}
.share-section.bottom{
    margin-top: 5.5rem;
}
.share-section p{
    line-height: 1;
    margin-bottom: 0;
    font-size: 4.2rem !important;
    color: var(--green);    
    text-transform: uppercase;
    font-family: var(--headingMedium);
}
.share-section .icons{
    display: flex;
    height: 3rem;
    column-gap: 2rem;
    margin-left: 2rem;
}
.share-section .icons .social img{
    margin: 0;
    filter: invert(71%) sepia(55%) saturate(6405%) hue-rotate(118deg) brightness(101%) contrast(101%);
}
.share-section .icons  a:hover .social img{
    margin: 0;
    filter: invert(9%) sepia(33%) saturate(4635%) hue-rotate(229deg) brightness(93%) contrast(125%);
}

/* NEWS CAROUSEL */
.single .news-carousel{
    margin-bottom: 19rem;
}
.news-carousel h3{
    margin-bottom: -6rem;
    padding-right: 13rem;
}
.news-carousel .swiper{
    padding-top: 11rem;
}
.news-carousel .swiper-slide .image{
    width: 100%;
    padding-bottom: 60%;
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem;
}
.news-carousel .swiper-slide img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
}
.news-carousel .swiper-slide a:hover img{
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transform: scale(1.04);
}
.news-carousel .swiper-slide .title{
    font-size: 4.2rem;
    color: var(--blue);
    text-transform: uppercase;
    font-family: var(--headingMedium);
    line-height: 1.2;
    margin-bottom: 0.6rem;
}
.news-carousel .swiper-slide .date{
    font-size: 4.2rem;
    color: var(--green);
    text-transform: uppercase;
    font-family: var(--headingMedium);
    line-height: 1.2;
    margin-bottom: 0;
}
.news-carousel .swiper-navigation {
    width: 11rem;
    position: absolute;
    top: 3.5rem;
    right: 0;
}
.news-carousel .swiper-button-next, .news-carousel .swiper-button-prev {
    filter: invert(61%) sepia(25%) saturate(3198%) hue-rotate(108deg) brightness(93%) contrast(101%);
}
.news-section .news-carousel .swiper-button-next,.news-section .news-carousel  .swiper-button-prev {
    filter: invert(96%) sepia(58%) saturate(2%) hue-rotate(182deg) brightness(115%) contrast(100%);
}
.news-section{
    background-color: var(--green);
    padding: 19rem 0;
    position: relative;
}
.news-section .white-sliver-top{
    width:100%;
    height:5.2rem;
    max-width:none;
    max-height:none;
    position: absolute;
    top:0;
    left:0;
}
.news-section .white-sliver-bottom{
    width:100%;
    height:auto;
    max-width:none;
    max-height:none;
    position: absolute;
    bottom:0;
    left:0;
}
.news-section::before{
    content: '';
    background-image: url(../svg/carousel-white-shape-before.svg);
    position: absolute;
    top: -1px;
/*    top: 0px;*/
    left: 0;
    width: 100%;
    height: 5.2rem;
    background-size: cover;
    background-position: left bottom;
    z-index: 18;
}
.news-section::after{
    content: '';
    background-image: url(../svg/carousel-white-shape-after.svg);
    position: absolute;
/*    bottom: -1px;*/
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5.2rem;
    background-size: cover;
    background-position: right top;
    z-index: 18;
}
.news-section h3{
    color: white;
    padding-right:13rem;
}
.news-section .news-carousel .date{
    color: white;
}

/* Featured news */
.featured-news-carousel{
    margin: 15rem 0 12rem 0;
}
.featured-news-carousel .swiper{
    padding-top: 11rem;
}
.featured-news-carousel h4{
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: -6rem;
}
.featured-news-carousel .featured-news-swiper .swiper-wrapper .swiper-slide a .col-image img{
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
/*    transform: scale(1.04);*/
}
.featured-news-carousel .featured-news-swiper .swiper-wrapper .swiper-slide a:hover .col-image img{
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transform: scale(1.04);
}   
.featured-news-carousel .swiper-slide .col-image{
    padding-right:7rem;
}
.featured-news-carousel .swiper-slide .col-copy{
    padding-left:7rem;
}
.featured-news-carousel .swiper-slide .image{
    padding-bottom: 60%;
    position: relative;
    overflow:hidden;
}
.featured-news-carousel .swiper-slide .image>img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.featured-news-carousel .swiper-slide .copy{
    max-width: 68.5rem;
}
.featured-news-carousel .swiper-slide .copy h3{
    font-family: var(--headingBold);
    margin-top:0;
}
.featured-news-carousel .swiper-slide .copy p + .cta{
    margin-top: 4.7rem;
    border-radius: 6px;
    min-height: 6rem;
    padding: 0 3rem;
    min-width: 25rem;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3.2rem;
    font-family: var(--headingMedium);
    text-transform: uppercase;
    padding-top: 0.4rem;
    transition: 0.2s;
}
.featured-news-carousel .featured-news-swiper .swiper-wrapper .swiper-slide a:hover .copy p + .cta{
    color:var(--green) !important;
    transition: 0.2s;
}
.featured-news-carousel .swiper-slide .copy p + .cta:hover{
    color:var(--green) !important;
    transition: 0.2s;
}
.featured-news-carousel .swiper-slide .copy .cta{
    margin-top: 1.1rem;
}
.featured-news-carousel .swiper-navigation {
    width: 11rem;
    position: absolute;
    top: 2.5rem;
    right: 0;
}
.featured-news-carousel .swiper-button-next,.featured-news-carousel .swiper-button-prev {
    filter: invert(61%) sepia(25%) saturate(3198%) hue-rotate(108deg) brightness(93%) contrast(101%);
}

/* PROGRAMS PAGES */
/* OVERVIEW */
.program-teasers{
    margin-top: 15rem;
    margin-bottom: 19rem;
}
.program-teasers>.row{
    row-gap: 10rem;
}
.program-teasers h4{
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 5.6rem;
}
.program-teasers .post-teaser .image{
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
}
.program-teasers .post-teaser .image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
}
.program-teasers a:hover .post-teaser .image img{
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transform: scale(1.04);
}
.program-teasers .post-teaser .title{
    font-size: 6.4rem;
    font-family: var(--headingMedium);
    color: var(--blue);
    line-height: 120%;
    text-transform: uppercase;
    margin-top: 4.5rem;
    padding-right:4rem;
    line-height:1;
}

/* Single page */
.program-page :is(h2, h3, h4, h5, h6) {
    color: var(--light-blue);
}
    {
    color: var(--blue);
}

.program-page .section-text:first-of-type .copy p:first-of-type{
    font-size: 2.7rem;
}
.program-page .section-text .copy p:first-of-type {
    font-size: 2.4rem;
}
.program-page .carousel-5050-banner-section{
    background-color: var(--light-blue);
}
.program-page .carousel-5050-banner-section .copy::before{
    filter: invert(88%) sepia(25%) saturate(3667%) hue-rotate(159deg) brightness(88%) contrast(93%);
}
.entry-content.program-page .copy ul li::marker, .entry-content.program-page .copy ol li::marker {
    color: var(--light-blue);
}

/* DONATE PAGE */
body.page-id-24 .section-image-text h2{
    color:var(--blue);
    /*font-family:var(--headingBold);
    max-width:133rem;
    margin-left:auto;
    margin-right:auto;*/
}
body.page-id-24 #donate-button-container #donate-button img {
    margin: 6rem auto 6rem auto;
    display: block;
}
body.page-id-24 #donate-button-container #donate-button img:hover {
    animation: pulse 0.9s 2;
}

/* CONTACT PAGES */
.page-id-62 .entry-content{
    margin-bottom: 19rem;
}
.contacts h4{
    font-family: var(--headingBold);
    margin-bottom: 2rem;
    text-transform:uppercase;
}
.contacts .contact-form h4{
    margin-bottom: 5rem;
}
.offices{
    margin-bottom: 6.5rem;
}
.offices .office p{
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom:0;
}
.offices .office .telephone{
    font-size: 2.4rem;
    text-decoration: underline;
    display: inline-block;
    margin-top:2rem;
}
.contacts .email a{
    font-size: 2.4rem;
    text-decoration: underline;
}
.contacts .office a.telephone:hover,
.contacts .email a:hover{
    color:var(--green);
}
.contacts .social {
    display: flex;
    column-gap: 3rem;
    height: 3rem;
}
.contacts .social a img{
    filter: invert(9%) sepia(33%) saturate(4635%) hue-rotate(229deg) brightness(93%) contrast(125%);
}
.contacts .social a:hover img{
    filter: invert(71%) sepia(55%) saturate(6405%) hue-rotate(118deg) brightness(101%) contrast(101%);
}
.contacts .contact-form{
    margin-top: 14rem;
}

form input[type="text"], form input[type="email"], form input[type="tel"],form input[type="password"], form textarea{
    width: 100%;
    border-color: var(--blue);
    border-width: 2px;
    border-radius: 0;
}
form input[type="text"], form input[type="email"], form input[type="tel"], form input[type="password"]{
    height: 6rem;
    padding: 1rem 2rem;
    margin-bottom: 3.7rem;
}
form select{
    height: 6rem;
    padding: 1rem 2rem;
    margin-bottom: 3.7rem;
    width: 100%;
    border-color: var(--blue);
    border-width: 2px;
    border-radius: 0;
    color: var(--blue);
}
form textarea{
    height: 16rem;
    padding: 1rem 2rem;
}
.entry-content form label a,
form label{
    font-family: var(--headingMedium) !important;
    font-size: 2.7rem !important;
    text-transform: uppercase !important;
}
.entry-content form label a{
    text-decoration:underline;
}
.entry-content form label a:hover{
    color:var(--green);
}
form input[type="submit"]{
    border-radius: 6px;
    height: 5.6rem;
    padding: 0 2rem;
    min-width: 17.8rem;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3.2rem;
    font-family: var(--headingMedium);
    text-transform: uppercase;
    padding-top: 0.4rem;
    background-color: var(--blue);
    color: white;
    margin-top: 3.7rem;
}
form p{
    margin-bottom: 0;
}
form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}
form .wpcf7-acceptance .wpcf7-list-item>label {
    display: flex;
    align-items: flex-start;
}
form .wpcf7-acceptance .wpcf7-list-item>label>input[type=checkbox] {
    height: 100%;
    height: 3.6rem;
    width: 3.6rem;
    accent-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 2.3rem;
    position: relative;
    z-index: 50;
}
form .wpcf7-acceptance .wpcf7-list-item>label>input[type=checkbox]:before {
    content: "";
    position: absolute;
    height: 100%;
    height: 3.6rem;
    width: 3.6rem;
    top: 0;
    left: 0;
    border: solid 2px var(--blue);
    border-radius: 0;
    padding: 1px;
    background-color: white;
}
form .wpcf7-acceptance .wpcf7-list-item>label>input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 1.2rem;
    height: 1.8rem;
    border: solid var(--blue);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -0.4rem;
    margin-left: 1rem;
}
form .wpcf7-acceptance .wpcf7-list-item>label>input[type=checkbox]:checked:before {
    background-color: white;
}
form .submit-container>p{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
form .submit-container label{
    font-family: var(--regular);
    font-size: 1.8rem;
    text-transform: none;
    line-height: 1.25;
}
form .submit-container label a{
    text-decoration: underline;
}
form .submit-container input[type="submit"]{
    margin-top: 0;
}
form .wpcf7-not-valid-tip{
    margin-top: -2rem;
    margin-bottom: 2rem;
}
form .wpcf7-spinner{
    display:none;
}

/* 404 page */
.error404 .hero-section{
    padding-bottom: 27rem;
}
.error404 .hero-section .subtitle a{
    color: var(--green);
    text-decoration: underline;
}

/* Legal page */
.page-template-legal-page .entry-content{
    margin-top: 7rem;
    margin-bottom: 18rem;
}

/* Edit button */

.edit-link{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: white;
    color: var(--green);
    width: 10rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 1px;
    border: 2px solid;
    z-index: 999;
    font-family: var(--regular);
}
.edit-link:hover{
    background-color: var(--green);
    color: white;
}


/* NO IMAGE HERO */
.entry-header-no-bg + .entry-content > *:first-child{
    margin-top:5rem;
}
/* PRIVACY POLICY */
body.page-id-474 .entry-content {

}
/* SAFEGUARDING PAGE */
body.page-id-501 .hero-section.no-bg{
    padding-bottom: 0rem;
    margin-bottom:-3rem;
}


/* SEARCH */
body.search.search-results .site-header #main-menu li:not(.cta) a{
    color: var(--blue);
    text-shadow: 0px 0px 60px rgba(0, 0, 0, 0);
}
body.search.search-results main > header{
    padding-top:36rem;
}
body.search.search-results main > header h1{
    font-size:9.2rem;
}
body.search.search-results main > article{
    margin-top:6rem;
    border-top:0.5rem solid var(--blue);
    padding-top:6rem;
}
body.search.search-results main > article > header > h2{
    font-size:5.6rem;
    text-transform: uppercase;
    color:var(--blue);
}
body.search.search-results main > article > header > h2 a:hover{
    text-decoration:underline;
}
body.search.search-results main > article > footer,
body.search.search-results main > article > header > .entry-meta{
    display:none;
}
body.search.search-results main > article:last-child{
    padding-bottom:6rem;
    border-bottom:0.5rem solid var(--blue);
    margin-bottom:24rem;
}

/* PORTAL */

/* Portal - Login */
.portal-login{
    padding-top: 35rem;
    padding-bottom: 15rem;
}

/* Portal - Network */
.organizations .pagination{
    display: flex;
    column-gap: 2rem;
}

/* Sign up to Newsletter page */
body.page-id-4762 .entry-content .section-text .inner .copy > h3{
    text-transform:none;
    color:var(--blue);
}
body.page-id-4762 .entry-content .section-text .inner .copy form > h4{
    display:none;
}


/* MEDIA QUERIES */


@media only screen and (max-width: 1700px){
        
    html, body {
        font: normal 9px/1.5 arial,sans-serif;
        font-family: var(--regular);
    }


}

@media only screen and (max-width: 1600px){
   
    html, body {
        font: normal 8.5px/1.5 arial,sans-serif;
        font-family: var(--regular);
    }

    .carousel-5050-banner-section .swiper-navigation {
        top: 6.9rem;
        right: 3.5rem;
    }

    /* NEWS PAGES */
    .featured-news-carousel .swiper-slide .col-image{
        padding-right:6rem;
    }
    .featured-news-carousel .swiper-slide .col-copy{
        padding-left:6rem;
    }
    .featured-news-carousel .swiper-navigation {
        top: 3rem;
    }

}


@media only screen and (max-width: 1400px){
   
    html, body {
        font: normal 8px/1.5 arial,sans-serif;
        font-family: var(--regular);
    }

    /*p {
        font-size: 2.2rem;
    }*/

    /* SPACING */
    .section-text {
        margin: 17rem 0;
    }
    .section-image-text {
        margin: 17rem 0;
    }
    .stats-banner-section {
        padding-top: 17rem;
        padding-bottom: 17rem;
        margin-top: 17rem;
        margin-bottom: 17rem;
    }
    a > .section-banner-message {
        margin-top: 17rem;
    }
    .news-section {
        padding: 17rem 0;
    }
    .tiles-carousel-section {
        margin: 17rem 0;
    }
    .tiles-carousel-section.bg-green {
        padding: 17rem 0;
    }
    .carousel-5050-banner-section{
        margin-top: 17rem;
        margin-bottom: 0rem;
    }
    .accordion-section {
        margin-top: 17rem;
        margin-bottom: 17rem;
    }
    .logos-section {
        margin-top: 17rem;
        margin-bottom: 17rem;
    }
    .section-image-text.style-50_50 .blocks>.row:not(:last-child) {
        margin-bottom: 12rem;
    }
    .team-teasers {
        padding: 17rem 0 24rem 0;
    }
    .team-filters {
        margin-bottom: 15rem;
    }    
    .single .news-carousel{
        margin-bottom: 17rem;
    }

    /* FLEXIBLE CONTENT TYPES */
    /* section-image-text */
    .section-image-text.style-50_50 .blocks .reverse-order .col-50-50-copy,
    .section-image-text.style-50_50 .blocks .col-50-50-image {
        padding-right: 6rem;
    }
    .section-image-text.style-50_50 .blocks .reverse-order .col-50-50-image,
    .section-image-text.style-50_50 .blocks .col-50-50-copy {
        padding-left: 6rem;
    }
    .section-image-text.style-30_70 .blocks .col-30-70-copy {
        padding-left: 10.8rem;
    }
    .section-image-text.style-30_70 .blocks .reverse-order .col-30-70-copy {
        padding-right: 10.8rem;
    }


    /* NEWS PAGES */
    .featured-news-carousel .swiper-slide .col-image{
        padding-right:5rem;
    }
    .featured-news-carousel .swiper-slide .col-copy{
        padding-left:5rem;
    }



}


@media only screen and (min-width: 1200px) and (max-width: 1400px){

    /* SHARDS */
    .home .hero-section::after,
    .hero-section.bg-img::after,
    .news-section::before,
    .news-section::after,
    .stats-banner-section::before,
    .stats-banner-section::after,
    .section-image-text.style-30_70 .blocks .image::after,
    .tiles-carousel-section.bg-green::before,
    .tiles-carousel-section.bg-green::after {
        height: 4rem;
    }

    .site-header .row .col-branding {
        width: 18.3rem;
    }

}


@media only screen and (max-width: 1199px){
    
    html, body {
        font: normal 7.5px/1.5 arial,sans-serif;
        font-family: var(--regular);
    }
    .container,
    .container-narrow,
    .container-fluid,
    .section-banner-message {
        padding-left: 60px;
        padding-right: 60px;
    }
    .programs-nav {
        padding-left: 60px;
        padding-right: 60px;
    }
    .programs-nav li:last-child a {
        margin-right: 60px;
    }

    /* HEADER */
    .site-header #main-menu {
        column-gap: 3rem;
        align-items: center;
    }
    .hero-section.bg-img .green-chevron {
        bottom: -13rem;
    }

    /* FLEXIBLE CONTENT TYPES */
    /* SECTION TEXT */
    .section-text .inner {
        max-width: 100%;
    }
    /* carousel-5050-banner-section */
    .carousel-5050-banner-section .copy .inner {
        padding: 10rem 8rem;
    }

    /* NEWS PAGES */
    .featured-news-carousel .swiper-slide .col-image{
        padding-right:4rem;
    }
    .featured-news-carousel .swiper-slide .col-copy{
        padding-left:4rem;
    }
    /* SINGLE NEWS ITEM */
    .single .entry-content figure figcaption {
        border-bottom: 1px solid var(--blue);
    }

}


@media only screen and (max-width: 1100px){

    .site-header .row .col-branding {
        width: 17.3rem;
    }

}


@media only screen and (max-width: 991px){

    html, body {
        font: normal 7px/1.5 arial,sans-serif;
        font-family: var(--regular);
    }
    .container,
    .container-narrow,
    .container-fluid,
    .section-banner-message{
        padding-left: 40px;
        padding-right: 40px;
    }
    .section-banner-message{
        padding: 6rem 40px 6rem 40px;
    }
    .programs-nav {
        padding-left: 40px;
        padding-right: 40px;
    }
    .programs-nav li:last-child a {
        margin-right: 40px;
    }
    /*p {
        font-size: 2.3rem;
    }*/

    /* SPACING */
    .section-text {
        margin: 15rem 0;
    }
    .section-image-text {
        margin: 15rem 0;
    }
    .stats-banner-section {
        padding-top: 15rem;
        padding-bottom: 15rem;
        margin-top: 15rem;
        margin-bottom: 15rem;
    }
    a > .section-banner-message {
        margin-top: 15rem;
    }
    .news-section {
        padding: 15rem 0;
    }
    .tiles-carousel-section {
        margin: 15rem 0;
    }
    .tiles-carousel-section.bg-green {
        padding: 15rem 0;
    }
    .carousel-5050-banner-section{
        margin-top: 15rem;
        margin-bottom: 0rem;
    }
    .accordion-section {
        margin-top: 15rem;
        margin-bottom: 15rem;
    }
    .logos-section {
        margin-top: 15rem;
        margin-bottom: 15rem;
    }
    .section-image-text.style-50_50 .blocks>.row:not(:last-child) {
        margin-bottom: 10rem;
    }

    .hero-section.bg-img .green-chevron {
        bottom: -13rem;
    }
    .program-teasers {
        margin-top: 11rem;
        margin-bottom: 15rem;
    }
    .news-teasers {
        margin-top: 11rem;
        margin-bottom: 15rem;
    }
    .team-teasers {
        padding: 15rem 0 21rem 0;
    }
    .team-filters {
        margin-bottom: 13rem;
    }
    .single .news-carousel{
        margin-bottom: 15rem;
    }

    /* TEAM POP-UP */
    .fancybox__nav {
        left: 4rem;
    }


    /* SHARDS */
    .home .hero-section::after,
    .hero-section.bg-img::after,
    .news-section::before,
    .news-section::after,
    .stats-banner-section::before,
    .stats-banner-section::after,
    .section-image-text.style-30_70 .blocks .image::after,
    .tiles-carousel-section.bg-green::before,
    .tiles-carousel-section.bg-green::after {
        height: 3rem;
    }


    /* FLEXIBLE CONTENT TYPES */
    /* section-image-text */
    .section-image-text.style-50_50 .blocks .reverse-order .col-50-50-copy,
    .section-image-text.style-50_50 .blocks .col-50-50-image {
        padding-right: 4rem;
    }
    .section-image-text.style-50_50 .blocks .reverse-order .col-50-50-image,
    .section-image-text.style-50_50 .blocks .col-50-50-copy {
        padding-left: 4rem;
    }
    .section-image-text.style-30_70 .blocks .col-30-70-copy {
        padding-left: 6.8rem;
    }
    .section-image-text.style-30_70 .blocks .reverse-order .col-30-70-copy {
        padding-right: 6.8rem;
    }    
    /* carousel-5050-banner-section */
    .carousel-5050-banner-section .copy .inner {
        padding: 10rem 8rem;
    }
    .carousel-5050-banner-section .image {
        height: 100%;
        width: 100%;
        position: absolute;
    }
    .carousel-5050-banner-section .image:after{
        content:'';
        display:block;
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background-color:rgba(0,0,63,0.9);
    }
    .carousel-5050-banner-section .copy {
        width: 100%;
        position: relative;
    }
    .carousel-5050-banner-section .copy::before {
        content: none;
    }
    .carousel-5050-banner-section .copy .inner {
        padding: 12rem 40px 10rem 40px;
        max-width: 100%;
    }
    .carousel-5050-banner-section .copy blockquote {
        background-image: url(../svg/quotes-white.svg);
        padding-top: 8.5rem;
    }


    /* TEAM POP-UP */
    .team-pop-up .col-copy {
        padding-left: 7rem;
    }


    /* NEWS PAGES */
    .featured-news-carousel .swiper-slide .col-image{
        padding-right:3rem;
    }
    .featured-news-carousel .swiper-slide .col-copy{
        padding-left:3rem;
    }
    .featured-news-carousel .swiper-navigation {
        top: 3rem;
    }
    .featured-news-carousel {
        margin: 12rem 0 12rem 0;
    }
    .entry-content .copy h3 {
        margin-bottom: 2rem;
    }
    .featured-news-carousel .swiper-slide .copy p + .cta{
        display:none;
    }
    .featured-news-carousel .swiper-slide .copy .summary{
        margin-bottom:0;
    }
    /* SINGLE NEWS PAGE */
    .single .news-carousel {
        margin-bottom: 20rem;
    }


    /* FOOTER */
    .site-footer .top .social {
        column-gap: 2.5rem;
    }

}


@media only screen and (max-width: 767px){

    html, body {
        font: normal 7px/1.5 arial,sans-serif;
        font-family: var(--regular);
    }
    .container,
    .container-narrow,
    .container-fluid,
    .section-banner-message {
        padding-left: 20px;
        padding-right: 20px;
    }
    .programs-nav {
        padding-left: 20px;
        padding-right: 20px;
    }
    .programs-nav li:last-child a {
        margin-right: 20px;
    }

    /* Typography */
    .home .hero-section .swiper-slide .title,
    h1{
        /*font-size: 12.2rem;*/
/*        font-size:8.2rem;*/
        font-size:7.2rem;
    }
    h2{
/*      font-size: 12.2rem;*/
        font-size:7.2rem;
    }
    blockquote>p,
    .news-section h3,
    .section-text h1,
    h3{
        /*font-size: 7.2rem;*/
        font-size:6rem;
    }
    .section-banner-message#newsletter-banner,
    h4{
        /*font-size: 5.6rem;*/
        font-size:4.8rem;
    }
    h5{
        /*font-size: 4.2rem;*/
        font-size:3.6rem;
    }
    h6{
        /*font-size: 3.6rem;*/
        font-size:3rem;
    }
    blockquote>p {
        font-size: 6rem !important;
        font-size: 4.2rem !important;
    }
    .single .entry-content blockquote>p {
        font-size: 4.2rem !important;
    }

    /* SPACING */
    .section-text {
        margin: 10rem 0;
    }
    .section-image-text {
        margin: 10rem 0;
    }
    .stats-banner-section {
        padding-top: 10rem;
        padding-bottom: 10rem;
        margin-top: 10rem;
        margin-bottom: 10rem;
    }
    a > .section-banner-message {
        margin-top: 10rem;
    }
    .news-section {
        padding: 10rem 0;
    }
    .tiles-carousel-section {
        margin: 10rem 0;
    }
    .tiles-carousel-section.bg-green {
        padding: 10rem 0;
    }
    .carousel-5050-banner-section{
        margin-top: 10rem;
        margin-bottom: 0rem;
    }
    .accordion-section {
        margin-top: 10rem;
        margin-bottom: 10rem;
    }
    .logos-section {
        margin-top: 10rem;
        margin-bottom: 10rem;
    }
    /*.section-image-text.style-50_50 .blocks>.row:not(:last-child) {
        margin-bottom: 7rem;
    }*/
    .program-teasers {
        margin-top: 10rem;
        margin-bottom: 14rem;
    }
    .news-teasers {
        margin-top: 7rem;
        margin-bottom: 14rem;
    }
    .team-teasers {
        padding: 10rem 0 18rem 0;
    }
    .team-filters {
        margin-bottom: 10rem;
    }
    .featured-news-carousel {
        margin: 7rem 0;
    }
    .single .news-carousel{
        margin-bottom: 10rem;
    }

    /* Hero section */
    .hero-section.bg-img {
        padding-top: 30rem;
        padding-bottom: 6rem;
    }
    .home .hero-section .green-chevron {
        bottom: -2rem;
        max-width: 150vw;
    }
    .hero-section.bg-img .green-chevron {
        max-width: 100vw;
        bottom: -2rem;
    }
    .hero-section.bg-img .programs-hero-shape {
        max-width: 58%;
    }
    .hero-section.bg-img h1 br{
        display:none;
    }
    .single .hero-section.no-bg {
        padding-bottom: 0rem;
        padding-top: 22rem;
    }

    /* FLEXIBLE CONTENT TYPES */
    /* Section Image Text */
    .section-image-text.style-50_50 .blocks .reverse-order .col-50-50-image, .section-image-text.style-50_50 .blocks .col-50-50-copy {
        padding-left: 1.2rem;
    }
    .section-image-text.style-50_50 .blocks .reverse-order .col-50-50-copy, .section-image-text.style-50_50 .blocks .col-50-50-image {
        padding-right: 1.2rem;
    }
    .section-image-text.style-50_50 .blocks .copy h3 {
        padding-top: 5rem;
        border-top: 0px solid var(--green); 
        margin-bottom: 3rem;
    }
    .section-image-text.style-30_70 .blocks .col-30-70-copy {
        padding-left: 1.2rem;
    }
    .section-image-text.style-30_70 .blocks .reverse-order .col-30-70-copy {
        padding-right: 1.2rem;
    }
    .accordion-section .accordion .title {
        font-size: 4.8rem;
    }
    /* carousel-5050-banner-section */
    .carousel-5050-banner-section .swiper-navigation {
        right: 2rem;
        top:6rem;
    }
    .carousel-5050-banner-section .swiper-slide {
        align-items: start;
/*        height:100%;*/
        min-height:auto;
    }
    /*.carousel-5050-banner-section .image {
        display:none;
        height: 0%;
        width: 100%;
        position: relative;
        padding-bottom:100%;
    }*/
    .carousel-5050-banner-section .copy .inner {
        padding: 10rem 20px 10rem 20px;
        max-width: 100%;
    }

    /* LOGO SECTION */
    .logos-section .logo img {
        max-width: 100%;
        max-height: 80%;
    }

    /* TEAM PAGE */
    .team-filters a:not(:last-child)::after{
        display:none;
    }
    .team-filters a {
        font-size: 4.8rem;
        display: block;
        line-height:1.3;
    }
    .team-teasers .team-member {
        display: flex;
        flex-wrap: wrap;
    }
    .team-teasers > .container > .row {
        row-gap: 7rem;
    }
    .team-teasers > .container > .row h3 {
        margin-bottom: -4rem;
    }
    .team-teasers > .container > .row:nth-child(2) > h3 {
        margin-top: 2rem;
    }
    .team-teasers .col-team-member {
        padding-right: 1.2rem;
    }
    .team-teasers .team-member .image {
        width: 100%;
        padding-bottom: 0;
        /* overflow: hidden; */
        position: relative;
        background: var(--gradient);
        height: calc(100vw - 40px);
        max-width: 400px;
        max-height: 400px;
        margin-bottom: 4rem;
        /*margin-left: auto;
        margin-right: auto;*/
    }
    .team-teasers .team-member .image:after{
        display:none;
    }
    .team-teasers .team-member .inner {
        width: 100%;
        padding: 0rem 0rem 0rem 0rem;
    }
    .team-teasers .team-member .title {
        font-size: 4.8rem;
        margin-bottom: 1rem;
    }
    .team-teasers .team-member .job-title {
        font-size: 4rem;
    }
    /* TEAM POP-UP */
    .team-pop-up {
        padding-bottom: 8rem;
    }
    .team-pop-up .col-image .image:after{
        display:none;
    }
    .team-pop-up .image {
        width: 100%;
        padding-bottom: 0;
        position: relative;
        background: var(--gradient);
        height: calc(100vw - 40px);
        max-width: 400px;
        max-height: 400px;
        margin-bottom: 7rem;
    }
    .team-pop-up .col-copy {
        padding-left: 1.2rem;
    }
    .fancybox__nav {
        left: 20px;
    }
    .is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
        left: -1rem;
    }
    .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
        right: auto;
        left: 7rem;
    }


    /* PROGRAM PAGE */
    .program-hero .hero-section.bg-img::after{
        display:none;
    }
    .programs-nav-container {
        background-color: var(--blue);
        padding-top: 1rem;
    }
    .page-id-18 .entry-header:after {
        font-size: 2.1rem;
        bottom: 6.5rem;
        padding: 0.5rem 1rem 0rem 1rem;
    }
    .program-teasers>.row {
        row-gap: 7rem;
    }
    .program-teasers .post-teaser .title {
        font-size: 4.8rem;
        margin-top: 4rem;
        padding-right: 0rem;
    }


    /* NEWS TEASERS */
    .news-teasers>.row {
        row-gap: 7rem;
    }
    .news-teasers .post-teaser .title {
        margin-top: 4rem;
    }
    .featured-news-carousel .swiper-slide .col-image{
        padding-right:1.2rem;
    }
    .featured-news-carousel .swiper-slide .col-copy{
        padding-left:1.2rem;
    }
    .featured-news-carousel .swiper-navigation {
        top: 3.5rem;
    }
    .featured-news-carousel .swiper-slide .image {
        margin-bottom:4rem;
    }
    .entry-content .copy h3 {
        margin-bottom: 2rem;
        font-size: 6rem;
    }
    .featured-news-carousel .swiper-slide .copy p + .cta,
    .featured-news-carousel .swiper-slide .copy .summary{
        display:none;
    }

    /* SINGEL POST/ NEWS */
    .single .entry-content blockquote {
        margin: 7rem 0;
    }
    .single .entry-content iframe {
        margin-top: 7rem;
        margin-bottom: 7rem;
    }


    /* CONTACT PAGE */
    .contacts .offices {
        margin-bottom: 0rem;
    }
    .contacts .email,
    .contacts .offices .office{
        margin-bottom:6rem;
    }


    /* FOOTER */
    .site-footer .top .social {
        margin-bottom: 5.4rem;
    }
    .site-footer .top .get-in-touch-section{
        margin-top:5rem;
    }
    .site-footer .top .get-in-touch-section .title{
        display:none;
    }
    .site-footer .top .get-in-touch-section .copy{
        display:none;
    }
    .site-footer .bottom .container {
        display: block;
    }
    .site-footer .bottom .lhs {
        display: block;
    }
    .site-footer .bottom .copirights::after, .site-footer .bottom #legal-menu li:not(:last-child)::after {
        display:none;
    }
    .site-footer .bottom #legal-menu {
        display: block;
        margin-top:2rem;
    }
    .site-footer .credits{
        margin-top:2rem;
    }


    /* FORM POP-UP */
    #popupNewsletterContainer {
        padding: 9rem 4rem 9rem 4rem;
    }

}


@media only screen and (orientation: portrait){

    .hero-section.bg-img {
        min-height: 60svh;
    }

}






/* Mobile menu */
@media only screen and (max-width: 991px){

    .site-header {
/*        height:67px;*/
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
/*        background-color:rgba(0,0,0,0.5);*/
    }
    .site-header.slim {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .site-header .col-branding{
        width:calc(100% - 7.1rem);
    }
    .site-header .col-main-menu{
        width:7.1rem;
    }
    /*.site-header .custom-logo-link .custom-logo,
    .site-header .site-branding,
    .site-header.slim .custom-logo-link .custom-logo {
        width: 14rem;
    }*/
    .site-header #main-menu {
        position: fixed;
        width: 100%;
        min-height: calc(100vh - 67px);
        background: white;
        left: 0;
        top: 100%;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 20px 6rem 20px;
        list-style: none;
        margin: 0;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        display: flex;
        height: 100%;
        overflow: scroll;
        overflow: auto;
        align-items:start;
    }
    #main-menu li{
        margin-bottom: 1rem;
    }
    .site-header #main-menu li a{
        font-size: 4.2rem;
    }
    .site-header .cta {
        width: 100%;
        margin:1rem 0;
    }
    .site-header .cta a {
        min-width: 100%;
    }
    .site-header #main-menu.show {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
    #main-menu li .sub-menu{
        position: relative;
        left: auto;
        top: auto;
        list-style: none;
        margin: 0;
        padding-left: 4rem;
        padding-bottom: 0;
        width: 100%;
    }
    .site-header.slim #main-menu li .sub-menu{
        box-shadow:none;
    }
    .site-header.slim #main-menu li .sub-menu{
        background-color: var(--white);
        padding-top: 0rem;
        row-gap: 0rem;
    }
    .site-header.slim #main-menu li .sub-menu li {
        margin: 0.5rem 0rem;
        line-height:1.2;
    }
    #main-menu li .sub-menu li a{
        color: var(--blue);
        font-size: 3.6rem !important;
        text-transform: none;
    }
    .site-header.slim #main-menu li:not(.cta) a {
        padding-top: 0rem;
        color: var(--blue);
        font-size: 4.2rem;
    }
    .site-header.slim #main-menu li.menu-item-has-children > a{
        margin-bottom:-1rem;
    }
    .site-header .cta:last-child {
        margin-left: 0rem;
    }
    .site-header #main-menu li.current-menu-ancestor > a, 
    .site-header #main-menu li.current_page_item a, 
    body.single .site-header #main-menu li.current-menu-ancestor > a, 
    body.single .site-header #main-menu li.current_page_item a {
        /*-webkit-transform: scale(1);
        transform: scale(1);*/
        color:var(--green) !important;
    }
    .site-header.slim #main-menu li a:after {
        background: var(--green);
    }
    .burger-container{
        position: relative;
        height: 40px;
    }
    .burger {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 0;
        right: 0rem;
        left: auto;
        z-index: 999999;
        display: block;
    }
    .burger span {
        position: relative;
        margin-top: -2px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        position: absolute;
        top: 50%;
        left: 0;
    }
    .burger span, .burger span::before, .burger span::after {
        display: block;
        width: 40px;
        height: 3px;
        background-color: var(--white);
        outline: 1px solid transparent;
        -webkit-transition-property: background-color, -webkit-transform;
        -moz-transition-property: background-color, -moz-transform;
        -o-transition-property: background-color, -o-transform;
        transition-property: background-color, transform;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }
    .burger span::before{
        transition: all .3s;
    }
    .burger span::before, .burger span::after {
        position: absolute;
        content: "";
    }
    .burger span::before {
        top: -15px;  
    }
    .burger span::after {
        top: 15px;
    }
    header.slim .burger.clicked span,
    .burger.clicked span {
        background-color: transparent !important;
    }
    body.single header .burger span, 
    body.single header .burger span::before, 
    body.single header .burger span::after,
    header.slim .burger span,
    header.site-header.dark-header .burger span, 
    header.site-header.dark-header .burger span::before, 
    header.site-header.dark-header .burger span::after{
        background-color: var(--blue);
    }
    header.site-header.dark-header.slim .burger.clicked span,
    header.site-header.dark-header.slim .burger.clicked span {
        background-color: transparent !important;
    }
    .burger.clicked span::before {
        background-color:var(--blue);
        width: 40px;
        height: 3px;
        top: -7px;
        -webkit-transform: translateY(7px) rotate(45deg);
        -moz-transform: translateY(7px) rotate(45deg);
        -ms-transform: translateY(7px) rotate(45deg);
        -o-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
    .burger.clicked span::after {
        background-color:var(--blue);
        width: 40px;
        height: 3px;
        top: 7px;
        -webkit-transform: translateY(-7px) rotate(-45deg);
        -moz-transform: translateY(-7px) rotate(-45deg);
        -ms-transform: translateY(-7px) rotate(-45deg);
        -o-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
    .burger:hover {
        cursor: pointer;
    }
    .page-id-16 .site-header #main-menu li .sub-menu {
        background-color: white !important;
        padding-top: 0 !important;
    }
    .site-header .row .col-branding {
        width:14rem;
    }
    .site-header.slim .row .col-branding {
        width: 14rem;
        transition: all 0.5s;
    }
    header.slim .burger.clicked span,
    header.slim .burger span::before,
    header.slim .burger span::after {
        background-color:var(--blue);
    }

}
/*
@media only screen and (max-width: 350px){

    #main-menu li{
        margin-bottom: 0.7rem;
    }
    .site-header.slim #main-menu li .sub-menu li {
        margin: 0.35rem 0rem;
    }

}*/