/*
Theme Name: JCPA
Description: Custom theme built for jewishpublicaffairs.org
Version: 1.0
*/
/*
Colors:

#cb521e Syracuse Red Orange
#003f5f Indigo Dye (blue)
#5da9e9 Argentinian Blue (light)
#d8dda7 light green
#74776b gray


#414e4a Outer Space
#5d4d6a English Violet
#bcacc3 Thistle
#b44418 Rust
#f4d06f Jasmine
#f6fae5 Beige
#bbd05e Yellow Green
#5da9e9 Blue (munsell)
 */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
h1 {
	font-size:  40px;
}
h2 {
	font-size:  35px;
}
h3 {
	font-size:  30px;
	line-height: 1em;
}
h4 {
	font-size:  25px;
}
h5 {
	font-size:  20px;
}
h6 {
	font-size:  15px;
}

a {
	color:  #5da9e9;
	transition: color 100ms linear;
}
a:hover {
	color: #7fcbfb;
}
@-webkit-keyframes nextArrow {
	0% {
  	transform:  translateY(0);
  }
  50% {
  	transform:  translateY(10px);
  }
 	100% {
  	transform:  translateY(0);
  }
}
@keyframes nextArrow {
  0% {
  	transform:  translateX(0);
  }
  50% {
  	transform:  translateY(10px);
  }
	100% {
  	transform:  translateY(0);
  }
} 

@-webkit-keyframes slipRight {
	0% {
  	transform:  translateX(0);
  }
  100% {
  	transform:  translateX(200px);
  }
}
@keyframes slipRight {
  0% {
  	transform:  translateX(0);
  }
  100% {
  	transform:  translateX(200px);
  }
} 
@-webkit-keyframes slipLeft {
	0% {
  	transform:  translateX(0);
  }
  100% {
  	transform:  translateX(-200px);
  }
}
@keyframes slipLeft {
  0% {
  	transform:  translateX(0);
  }
  100% {
  	transform:  translateX(-200px);
  }
}
@-webkit-keyframes highlightSlide {
	0% {
  	width: 0;
  }
  100% {
  	width: 100%;
  }
}
@keyframes highlightSlide {
  0% {
  	width: 0;
  }
  100% {
  	width: 100%;
  }
}

@-webkit-keyframes menuSlideFromLeft {
	0% {
  	left: -100vw;
  }
 	100% {
  	left:  0;
  }
}
@keyframes menuSlideFromLeft {
  0% {
  	left: -100vw;
  }
 	100% {
  	left:  0;
  }
}
@-webkit-keyframes menuSlideFromRight {
	0% {
  	right: -100vw;
  }
 	100% {
  	right:  0;
  }
}
@keyframes menuSlideFromRight {
  0% {
  	right: -100vw;
  }
 	100% {
  	right:  0;
  }
}
 

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-size: 275px;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html, body {
	font-family: 'Noto Sans', sans-serif;
	margin:  0;
	color:  #222;
}
html {
	margin-top: 0 !important;
	background:  linear-gradient(157deg, #414e4a 0%,#414e4a 100%);
	background: #fff;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Merriweather', serif;
	line-height: 1.1em;
}
.site-title {
	position:  absolute;
	left:  -9999999px;
}
header#site-header {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: linear-gradient(180deg,rgba(0,0,0,.8) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,0) 100%);
    transition: background,top 150ms linear;
}
header#site-header nav {
	display:  flex;
	align-items: flex-end;
	width:  100%;
	padding: 15px 15px 0 0;
	transition: padding 150ms linear;
}
header#site-header .site-title-wrap {
	max-width: 300px;
	padding:  10px 15px 0 15px;
	margin: 0 0 0 15px;
	transition: margin 150ms linear;
}
header#site-header .site-title-wrap a {
  font-size: 43px;
  color: #fff;
  text-decoration: none;
  font-weight: normal;
  line-height: 1em;
  display: inline-block;
  font-weight: bold;
  padding: 8px 5px 0 0;
}
@-webkit-keyframes logoFadeUp {
	0% {
  	transform:  translateY(5px);
  	opacity: 0;
  }
 	100% {
  	transform:  translateY(0);
  	opacity: 1;
  }
}
@keyframes logoFadeUp {
  0% {
  	transform:  translateY(5px);
  	opacity: 0;
  }
	100% {
  	transform:  translateY(0);
  	opacity: 1;
  }
} 
@-webkit-keyframes logoLineDown {
	0% {
  	transform:  scaleY(0);
  	opacity: 0;
  }
 	100% {
  	transform:  scaleY(1);
  	opacity: 1;
  }
}
@keyframes logoLineDown {
  0% {
  	transform:  scaleY(0);
  	opacity: 0;
  }
	100% {
  	transform:  scaleY(1);
  	opacity: 1;
  }
} 
@-webkit-keyframes logoTextLeft {
	0% {
  	transform:  translateX(5px);
  	opacity: 0;
  }
 	100% {
  	transform:  translateX(0);
  	opacity: 1;
  }
}
@keyframes logoTextLeft {
  0% {
  	transform:  translateX(5px);
  	opacity: 0;
  }
	100% {
  	transform:  translateX(0);
  	opacity: 1;
  }
} 
header#site-header .site-title-wrap svg {
	width: 100%;
}
header#site-header .site-title-wrap svg .cls-1 {
  fill: none;
  stroke: #cb521e;
  stroke-width: 2px;
  transform: scaleY(0);
  opacity: 0;
  animation-name: logoLineDown;
	animation-duration: 500ms;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 1000ms;
}
header#site-header .site-title-wrap svg .cls-2 {
  fill: #cb521e;
  stroke: #cb521e;
  stroke-width: .8px;
  transform:  translateX(5px);
  opacity: 0;
  animation-name: logoTextLeft;
	animation-duration: 500ms;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 1100ms;
}
header#site-header .site-title-wrap svg .cls-3 {
  fill: #fff;
  stroke: #fff;
  stroke-width: .8px;
  transition: fill,stroke 100ms linear;
  transform: translateY(5px);
  opacity: 0;
  animation-name: logoFadeUp;
	animation-duration: 300ms;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	padding: 0 2px;
}
header#site-header .site-title-wrap svg .cls-3.jcpa-j {
	animation-delay: 500ms;
}
header#site-header .site-title-wrap svg .cls-3.jcpa-c {
	animation-delay: 600ms;
}
header#site-header .site-title-wrap svg .cls-3.jcpa-p {
	animation-delay: 700ms;
}
header#site-header .site-title-wrap svg .cls-3.jcpa-a {
	animation-delay: 800ms;
}

header#site-header.scrolled {
	background:  #003f5f;
}
header#site-header.scrolled nav {
	padding-top: 5px;
	padding-right: 0;
}
header#site-header.scrolled .site-title-wrap svg .cls-3 {
	fill:  #fff;
	stroke: #fff;
}

header#site-header.scrolled .site-title-wrap {
	margin: 0 15px 0 0;
	padding-bottom: 5px;
	padding-top: 0;
}

header#site-header.scrolled nav .menu-2024-menu-container ul li a {
	color: #fff;
}
header#site-header .nav-menu-wrap {
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding-right: 10px;
  padding-bottom: 4px;
  transition: padding 150ms linear;
}
header#site-header.scrolled .nav-menu-wrap {
	padding-bottom: 0;
}

img {
	max-width:  100%;
	height: auto;
}
header#site-header nav .menu-2024-menu-container {
	flex: 1;
}

body header#site-header nav .menu-2024-menu-container ul {
	/*background: #382c41;*/
	transition: background 150ms linear;
}
header#site-header.scrolled nav .menu-2024-menu-container > ul {
	background: transparent;
	padding-right: 0;
}



.menu-footer-menu-container ul,.menu-social-menu-container ul {
	display: flex;
	flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0 15px;
}
header#site-header nav .menu-2024-menu-container ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding: 0;
	margin: 0;
}
.menu-footer-menu-container ul,.menu-social-menu-container ul {
	align-items: center;
}
header#site-header nav .menu-2024-menu-container ul li,.menu-footer-menu-container ul li,.menu-social-menu-container ul li {
	margin: 0 5px;
    padding: 0;
    font-size: 16px;
    list-style-type: none;
    position: relative;
}
header#site-header nav .menu-2024-menu-container ul li a,.menu-footer-menu-container ul li a,.menu-social-menu-container ul li a {
	text-decoration: none;
	color: #111;
	padding: 10px;
}
header#site-header nav .menu-2024-menu-container ul li {
	transition: padding 150ms linear;
	margin: 0 4px;
}
header#site-header nav .menu-2024-menu-container ul li a {
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.02em;
	position: relative;
	padding: 10px 15px;
	background: transparent;
	transition: background 100ms linear;
	font-weight: 500;
  text-rendering: geometricPrecision;
}
footer .menu-2024-menu-container ul li a {
	position: relative;
  z-index: 1;
  padding: 10px;
}
header#site-header nav .menu-2024-menu-container ul li a:before,
footer .menu-2024-menu-container ul li a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	z-index: -1;
	opacity: 0;
	border: solid 2px #5da9e9;
	transition: height,opacity 100ms linear;
}

/*header#site-header nav .menu-2024-menu-container ul li a:hover:before,
footer .menu-2024-menu-container ul li a:hover:before {
	height: 100%;
	opacity: 1;
}*/

header#site-header nav .menu-2024-menu-container ul li a,.menu-footer-menu-container ul li a,.menu-social-menu-container ul li a {
	display: block;
  position:relative;
  z-index: 1;
}
/*header#site-header nav .menu-2024-menu-container ul li.menu-item:hover,.menu-footer-menu-container ul li.menu-item a:hover,.menu-social-menu-container ul li.menu-item a:hover {
  color: #333;
}*/
/*header#site-header nav .menu-2024-menu-container ul li.menu-item:after,.menu-footer-menu-container ul li.menu-item a:after,.menu-social-menu-container ul li.menu-item a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  visibility: none;
  opacity: 0;
  z-index: -1;
  transition: all 200ms;
  border-radius:  2px;
}


header#site-header nav .menu-2024-menu-container ul li.menu-item:hover:after,.menu-footer-menu-container ul li.menu-item a:hover:after,.menu-social-menu-container ul li.menu-item a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}*/

header#site-header nav .menu-2024-menu-container ul > li.menu-item.menu-item-has-children > a:after {
	/*border-bottom: none;*/
}
header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu {
	position: absolute;
	right: 0;
	top: 100%;
	padding: 5px 3px 5px 3px;
	opacity: 0;
	background: #222;
	transition: opacity 100ms linear;
	visibility: hidden;
	z-index: 2;
	border: solid 2px rgba(40,40,40,.5);
}
header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children:hover > ul.sub-menu {
	visibility: visible;
	opacity: 1;
}
.menu-item-8916:hover ul.sub-menu {
    max-width: 250px;
}
header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children.menu-item-8916:hover > ul.sub-menu li {
	white-space: unset;
}
header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children.menu-item-8916:hover > ul.sub-menu li span {
	line-height: 1.2em;
	margin-bottom: 0;
	cursor: pointer;
}
header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li {
	margin:  0 5px;  
	white-space: nowrap;
	width: 100%;
	background: #222;
}
header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li.divider {
	color: #fff;
  padding-left: 15px;
  font-size: 17px;
  padding: 5px 15px;
  background: rgba(240,240,240,.06);
}


.our-work-hover-inner {
	text-align: center;
	padding: 50px 15px;
	border-top: solid 2px #ccc;
	border-bottom: solid  2px #ccc;
	background: #111;
}

/* program */
.our-work-hover {
	padding: 15px;
	width: 70%;
	position: fixed;
	right: 0;
	top: 62px;
	padding-right: 10vw;
	display: none;
	z-index: 10;
}
header#site-header.scrolled .our-work-hover {
	top: 53px;
}
.our-work-hover:after {
	content: '';
	display: none;
}

.our-work-hover-inner {
	padding: 15px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	border: solid 1px #666;
	background: linear-gradient(135deg,#474a4a,#444);
	color: rgba(250,250,250,1);
	width: 100%;
}
.work-item {
	width: 25%;
	padding: 0 10px;
	text-align: center;
	position: relative;
}
.work-item img {
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	opacity: 0.3;
	z-index: 0;
	transform: scale(1.1);
	display: none;
}
.work-item svg {
	width: 100px;
	height: auto;
	position: relative;
	z-index: 1;
}
.work-item svg path{
	stroke: #fff;
}
.work-item h3 {
	font-size: 22px;
	font-weight: 300;
}
.work-item ul {
	margin: 0;
	padding: 0;
}
.work-item ul li {
	list-style-type: none;
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 15px;
	line-height: 20px;
}
/*#nav-our-work:hover .our-work-hover {
	display: flex;
	justify-content: flex-end;
	z-index: 7;

}*/
body.hover #header:after {
	content: '';
	z-index: -1;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: 300ms;
	animation-fill-mode: forwards;
}
#nav-our-work:hover .our-work-hover-inner {
	padding: 0;
}
#nav-our-work:hover .our-work-hover-inner .core-area {
	padding: 15px;
	width: 25%;
}
#nav-our-work:hover .our-work-hover-inner ul {
	padding: 0;
	margin: 0;
	text-align: left;
}
#nav-our-work:hover .our-work-hover-inner ul li {
	list-style-type: none;
	font-weight: bold;
	margin-bottom: 10px;
	padding-left: 10px;
	position: relative;
	font-size: 16px;
	left: 0;
	transition: left 100ms linear;
}
#header#site-header .nav-wrap > nav > ul > li .sub-menu li {
  position: relative;
  left: 0;
  transition: left 100ms linear;
}

/*#nav-our-work:hover .our-work-hover-inner ul li:hover,#header#site-header .nav-wrap > nav > ul > li .sub-menu li:hover {
	left: 15px;
}
#header#site-header .nav-wrap > nav > ul > li .sub-menu li:hover {
  left: 5px;
}*/

#nav-our-work:hover .our-work-hover-inner ul li:before,#header#site-header .nav-wrap > nav > ul > li .sub-menu li:before {
	font-family: "Font Awesome 5 Free";
	content: "\f178";
	font-weight: lighter;
	position: absolute;
	left: 0;
	opacity: 0;
	transition: all 100ms linear;
}
#header#site-header .nav-wrap > nav > ul > li .sub-menu li:before {
  font-size: 15px;
  top: 8px;
}
#nav-our-work:hover .our-work-hover-inner ul li:hover:before {
	left: -15px;
	opacity: 1;
}
#header#site-header .nav-wrap > nav > ul > li .sub-menu li:hover:before {
  left: -10px;
  /*opacity: 1;*/
}

#nav-our-work:hover .our-work-hover-inner .core-area img {
	width: 80%;
	height: 150px;
}
#nav-our-work:hover .our-work-hover-inner h3 {
	font-size: 20px;
	text-align:  left;
}
#nav-our-work:hover .nav-wrap nav > ul > li:hover:after {
	background: linear-gradient(45deg,#0b8aa1 0,#1fa9a4 50%,#2e9482 100%);
}


.cta {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 15px;
    color: #010024;
    text-decoration: none;
}

.top-ctas {
	/*padding-right: 25px;*/
}


.cta.top-cta {
	line-height: 1.1em;
  font-size: 18px;
  font-weight: 500;
  margin: 5px 0 3px 15px;
  position: relative;
  z-index: 1;
  padding: 14px 15px;
  color: #fff;
  background: #cb521e;
  transition: all 150ms linear;
}

.bottom-ctas {
    display: block;
    padding-top: 45px;
    background: #333a3e;
    text-align: center;
}
.bottom-ctas .top-cta {
	padding: 14px 20px;
}

a.cta.top-cta.cta-take-action {
    background: #5da9e9;
    transition: background 100ms linear;
}
a.cta.top-cta.cta-take-action:hover {
	border-color: transparent;
	background: transparent;
}

/*.cta.top-cta:after {
	content: '';
  position: absolute;
  width: 90px;
  height: 10px;
  display: block;
  bottom: 1px;
  left: calc(50% - 48px);
  background: url(/wp-content/themes/jcpa/images/stroke.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: -1;
  opacity: .9;
}*/
.cta.top-cta i,.cta.content-cta i {
	position: absolute;
	top: 33%;
	right: -30px;
	transition: right 100ms linear;
}
.cta.top-cta:hover i,.cta.content-cta:hover i {
	right: -35px;
}
header#site-header.scrolled .cta.top-cta {
	margin: 4px 0 8px 15px;
}
header#site-header.scrolled .cta.top-cta:hover {
	/*color: #bcacc3;*/
}
header#site-header.scrolled nav .menu-2024-menu-container > ul > li {
	padding: 7px 0 9px 0;
}

.cta.content-cta {
    padding: 10px 15px;
    font-size: 20px;
    font-weight: 500;
    align-self: flex-start;
    margin-right: 50px;
    position: relative;
    margin-bottom: 10px;
    background: #5da9e9;
    transition: background 100ms linear;
}
.cta.content-cta,
.cta.content-cta:hover {
	color: #fff;
}

.cta.content-cta.color-orange {
	background: #cb521e;
}


header#site-header nav .menu-2024-menu-container ul li a.cta,.menu-footer-menu-container ul li a.cta {
	/*background: linear-gradient(45deg, #1d8ccf, #1d8ccf);*/
	background:  #8ac43d;
    padding: 10px 15px;
    border-radius: 2px;
    margin-bottom:  0;
}
header#site-header nav .menu-2024-menu-container ul li a.cta, .menu-footer-menu-container ul li a.cta {
	color:  #010024;
}
.mobile-nav-icon,.mobile-back {
    display: none;
}
.mobile-back {
	opacity: 0;
    transition: opacity 300ms linear;
}
.right-menu {
	display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
    align-items: flex-end;
}
@media screen and (max-width: 1090px) {
	header#site-header .cta.top-cta,header#site-header.scrolled .cta.top-cta {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 50%;
		background: #cb521e;
		margin: 0;
		padding: 15px;
		border-top: solid 2px #dc632f;
		color: #fff;
		text-align: center;
		font-weight: 500;
		z-index: 11;
	}
	header#site-header .cta.top-cta.cta-take-action,header#site-header.scrolled .cta.top-cta.cta-take-action {
		background: #003f5f;
		border-top: solid 2px #114f6f;
	}
	body.mobile-active header#site-header .cta.top-cta.cta-take-action,
	body.mobile-active header#site-header.scrolled .cta.top-cta.cta-take-action {
		background: #5da9e9;
		border-top-color: #6ebafa;
	}

	header#site-header .cta.top-cta.cta-donate,header#site-header.scrolled .cta.top-cta.cta-donate {
		left: auto;
		right: 0;
	}
	header#site-header .cta.top-cta.cta-donate:hover,header#site-header.scrolled .cta.top-cta.cta-donate:hover,
	header#site-header .cta.top-cta.cta-take-action:hover,header#site-header.scrolled .cta.top-cta.cta-take-action:hover {
		background: #5da9e9;
		border-top-color: #6ebafa;
	}
	header#site-header .cta.top-cta.cta-take-action:before,header#site-header.scrolled .cta.top-cta.cta-take-action:before,
	header#site-header .cta.top-cta.cta-take-action:after,header#site-header.scrolled .cta.top-cta.cta-take-action:after,
	header#site-header .cta.top-cta.cta-donate:after,header#site-header.scrolled .cta.top-cta.cta-donate:after,
	header#site-header .cta.top-cta.cta-donate:before,header#site-header.scrolled .cta.top-cta.cta-donate:before {
		display: none;
	}
	header#site-header.scrolled .cta.top-cta:hover {
		color: #fff;
	}
	footer .cta.top-cta {
		position: relative;
		background: none;
		border: none;
		padding: 10px;
	}
/*	.bottom-ctas {
		padding: 0;
	}*/
	.cta.top-cta:after {
		display: none;
	}
	/*.cta.top-cta.cta-donate,
	footer .cta.top-cta {
		display: none;
	}*/
	footer .cta.top-cta.cta-donate {
		display: block;
		margin: 10px auto;
	}
	.cta.top-cta i {
		position: relative;
		right: -2px;
		top: 1px;
		padding: 0;
	}
	footer .cta.top-cta i {
		right: 0;
	}
	footer .cta.top-cta:hover i {
		right: -5px;
	}
	header#site-header#site-header .site-title-wrap {
		margin: 0;
		padding-top: 0;
		max-width: 275px;
	}
	header#site-header.scrolled .site-title-wrap {
		margin: 0;
	}
	#post-content.layouts .layout-blocks .post-blocks .post-block-wrap {
		width: 50% !important;
		min-width: 50% !important;
	}
	#post-content.layouts .layout-blocks .post-blocks.blocks-1 .post-block-wrap {
		width: 75% !important;
		min-width: 75% !important;
	}
	header#site-header nav .menu-2024-menu-container {
		visibility: hidden;
		opacity: 0;
		position: fixed;
	    top: 0;
	    left: -99999px;
		bottom: auto;
    right: auto;
		transition: transform,opacity 100ms linear;
	}
	.mobile-nav-icon {
	    display: block;
	    color: #fff;
	    font-size: 40px;
	    position: absolute;
	    top: 3px;
	    right: 20px;
	    z-index: 11;
	}
	header#site-header .nav-menu-wrap {
		padding-right: 0;
	}
	header#site-header.scrolled .mobile-nav-icon {
		color: #fff;
	}
	.mobile-nav-icon.close {
		right: -160px;
	}
	body.mobile-active header#site-header nav .menu-2024-menu-container {
		opacity:  1;
		visibility: visible;
		left: 0;
		bottom: 0;
		right: 0;
	    display: block;
	    width: 100%;
	    height: 100%;
	    z-index: 10;
	    background: rgba(3,63,95,1);
	    justify-content: center;
	    overflow: scroll;

	}
	body.mobile-active header#site-header nav .menu-2024-menu-container ul {
		display:  flex;
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: center;
    justify-content: center;
    padding: 30px 0;
    min-height: 100%;
    transition: background 100ms linear;
	}

	body.mobile-active header#site-header nav .menu-2024-menu-container > ul,
	body.mobile-active header#site-header.scrolled nav .menu-2024-menu-container > ul {
		background: transparent;
		position: relative;
	}
body.mobile-active header#site-header nav .menu-2024-menu-container:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .11;
    background: url(/wp-content/themes/jcpa/images/eyes.svg);
    background-size: 10px;
}


	body.mobile-active header#site-header nav .menu-2024-menu-container ul li {
		font-size: 30px;
		margin: 0;
		color: #fff;
	}
	body.mobile-active header#site-header.scrolled nav .menu-2024-menu-container > ul > li {
		padding: 0;
	}
	body.mobile-active header#site-header nav .menu-2024-menu-container ul li .cta {
		display: block;
		margin-top: 10px;
	}
	body.mobile-inactive .mobile-nav-icon {
		animation-direction: reverse;
		top: 9px;
		transition: top 150ms linear;
	}
	body.mobile-inactive header#site-header.scrolled .mobile-nav-icon {
		top: 3px;
	}
	body.mobile-active .mobile-nav-icon {
		animation-direction: forwards;
	}
	body.mobile-active .mobile-nav-icon {
		-webkit-animation-name: slipRight;
	  animation-name: slipRight;
	  -webkit-animation-duration: 300ms;
	  animation-duration: 300ms;
	  -webkit-animation-fill-mode: both;
	  animation-fill-mode: both;
	}
	body.mobile-active .mobile-nav-icon.close {
		-webkit-animation-name: slipLeft;
	  animation-name: slipLeft;
	  color: #fff;
	}
	body.mobile-inactive .mobile-nav-icon.close {
		animation-direction: reverse;
		color: #fff;
	}

	header#site-header nav .menu-2024-menu-container ul > li.menu-item.menu-item-has-children:hover:after {
		border-color:  transparent;
		display: none;
	}
	/*header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > a {
		padding-bottom: 0;
	}*/
	header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu {
		visibility: visible;
		position: static;
		opacity: 1;
		background: transparent;
	}
	header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li.has-description a span {
		align-self: center;
	}
	header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li.has-description a span.menu-item-description {
		font-size: 16px;
		line-height: 17px;
	}

	body.mobile-active header#site-header nav .menu-2024-menu-container ul.sub-menu {
		display: flex;
		align-items: flex-end;
		padding: 0;
		width: 100%;
	}
	body.mobile-active header#site-header nav .menu-2024-menu-container > ul > li > a,
	body.mobile-active header#site-header nav .menu-2024-menu-container ul.sub-menu li a {
	    font-size: 30px;
	    /*background: #382c41;*/
	    padding: 15px 35px;
	    margin-bottom: 5px;
	}
	body.mobile-active header#site-header nav .menu-2024-menu-container ul.sub-menu li a {
		font-size: 20px;
		padding: 5px 35px;
	}
	/*header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li {
		font-size: 20px;
	}*/
	/*header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li a {
		padding: 0 15px;
		text-align: center;
	}*/
	body #mission {
		flex-direction: column;
	}
	body #mission .report-main, body #mission .focus-areas {
		width: 100%; 
	}
	/*header#site-header nav .menu-2024-menu-container ul li ul li a {
		font-size: 16px;
	}*/
	footer .right-menu .menu-footer-menu-container {
		min-width: 305px;
	}
	footer .right-menu .menu-footer-menu-container ul {
		text-align: right;
		padding: 0 0 5px 5px;
	}
}


.top-ctas .search-toggle {
	color: #fff;
	padding-left: 20px;
	cursor: pointer;
	transition: padding, color 100ms linear;
}
.top-ctas .search-toggle i {
	cursor: pointer;
}
.top-ctas .search-toggle:hover {
	color: #5da9e9;
}
.top-ctas .search-toggle span {
	position: absolute;
	left: -9999vw;
}
header#site-header.scrolled .top-ctas .search-toggle {
  padding-right: 15px;
}
.top-ctas .search-toggle .fa-arrow-up {
	display: none;
}
body.search-active .top-ctas .search-toggle .fa-arrow-up {
	display: inline;
}
body.search-active .top-ctas .search-toggle .fa-magnifying-glass {
	display: none;
}

#header-search-results {
	position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  z-index: 100;
  display: none;
  overflow-y: auto;
}
body.search-active.results-active #header-search-results {
	display: block;
}
#header-search-results .news {
	padding-top: 15px;
	position: relative;
  z-index: 2;
}
#header-search-results .resource-entry-block .resource-entry.press-entry {
	margin-bottom: 0;
}

.clear-search {
	position: fixed;
  color: #fff;
  font-size: 32px;
  top: 15px;
  right: 32px;
  display: none;
  cursor: pointer;
}
.clear-search i {
	cursor: pointer;
}
body.search-active.results-active #header-search-results .clear-search {
	display: block;
}
body.search-active.results-active #header-news-search form input[type=submit] {
	display: none;
}


#header-news-search {
	position: fixed;
  top: -80px;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #333a3e;
  transition: top 150ms linear;
}

body.search-active #header-news-search {
	top: 0;
}
body.search-active header#site-header {
	top: 80px;
}

#header-news-search input[type="submit"],
#search-filter-form-9113 .sf-field-submit input[type="submit"] {
	font-family: 'Font Awesome 5 Free';
	font-weight: bold;
}
#header-news-search input[type="submit"] {
	margin-right: 15px;
  background: transparent;
  font-size: 25px;
}
#header-news-search form.searchandfilter ul {
	width: 100%;
  display: flex;
  align-items: center;
}
#header-news-search .sf-field-search input {
	background: transparent;
  border: none;
  padding: 15px 30px;
  font-size: 20px;
  color: #fff;
  font-family: 'Merriweather', serif;
}
#header-news-search .sf-field-search input:focus-visible {
	outline: none;
}
#header-news-search .sf-field-search input::placeholder {
	color: #aaa;
}


.slideshow-controls {
	position: absolute;
	bottom: 50px;
	width: 100%;
	z-index: 1;
	left: 0;
}

.slideshow-controls .next {
	position: absolute;
	right: 30px;
}
.slideshow-controls .previous {
	position: absolute;
	right: 70px;
}
.slideshow-controls .previous,
.slideshow-controls .next {
	z-index: 1;
	outline: none;
	border: none;
	background: none;
	color: #fff;
	font-size: 20px;
	transition: color	100ms linear;
}
.slideshow-controls .previous:hover,
.slideshow-controls .next:hover {
	color: #5da9e9;
	cursor: pointer;
}


.swiper-slide {
  height: auto;
}

#top-banner,
#top-banner .swiper-container-topper  .swiper-slide .top-banner-image {
	position: relative;
}
#top-banner .swiper-container-topper  .swiper-slide .top-banner-image a.img {
	width: 100%;
}
#top-banner .swiper-container-topper  .swiper-slide .top-banner-image img {
	position: relative;
	z-index: 2;
	width: 100%;
	max-height: 400px;
    object-fit: contain;
}
#top-banner h2 {
	line-height: 1em;
	margin-bottom: 10px;
}

#top-banner .swiper-container-topper  .swiper-slide {
	
    width: 100vw;
    padding: 30px 50px;
    padding-top: 90px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y:  hidden;
    flex-wrap: wrap;
}
.swiper-container-topper  .swiper-slide .slide-inner {
	display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}
.swiper-container-topper  .swiper-slide .slide-inner .content-cta {
	color: #eee;
	margin-top: 20px;
}
.swiper-container-topper  .swiper-slide .slide-inner .content-cta:hover i {
	color: #5da9e9;
}

#top-banner .swiper-container-topper  .swiper-slide p {
	font-size:  20px;
}

#top-banner .swiper-container-topper  .swiper-slide .background {
	background-size: cover;
    position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	transform: scale(1.2);
	z-index: -1;
    overflow: hidden;
    background-position: 50% 50%;
    opacity: .7;
}
#top-banner .swiper-container-topper  .swiper-slide .top-banner-text {
	padding: 50px;
	display: flex;
    flex-direction: column;
    align-items: center;
}

/*#top-banner .swiper-container-topper  .swiper-slide .top-banner-text .button {
	color: #000;
    padding: 12px 25px;
    background: #89c53e;
    border: solid 2px #68992b;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 3px;	
}
#top-banner .swiper-container-topper  .swiper-slide .top-banner-text .button i {
	font-size: 20px;
    line-height: 30px;
    transform: translateY(2px);
    opacity: .7;
    padding-left: 6px;
}*/


/* About Credit */
.about-divide {
	height: 3px;
	margin: 0;
  border: none;
  background: transparent;
  width: 100%;
  /*background: #eee;*/
}
#about-credit {
	background: #fff;
  padding: 35px 30px;
  color: #222;
}
#about-credit.bg-alt {
	background: #eee;
  border-top: solid 2px #ccc;
}
#about-credit p {
	font-size: 16px;
    line-height: 28px;
}
#about-credit .about-credit-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
}
#about-credit img {
	max-width: 250px;
}
#about-credit .credit-right {
	padding-left: 20px;
}

@media (max-width: 700px) {
	#about-credit .about-credit-inner {
		flex-direction: column;
	}
	#about-credit .about-credit-inner .credit-right {
		padding: 20px 0;
	}
}
    
    
/*#top-banner .swiper-container-topper .swiper-slide .background:before,
#top-banner .swiper-container-topper .swiper-slide .background:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(2,0,36);
	background: linear-gradient(157deg, rgba(2,0,36,.3) 0%, rgba(29,140,207,.3) 50%, rgba(136,197,62,.2) 100%);
	background:  linear-gradient(157deg, rgba(2,0,36,.8) 0%,rgba(2,0,36,.8) 10%,rgba(29,140,207,.8) 70%, rgba(136,197,62,.8) 100%);
	background: linear-gradient(157deg, rgba(2,0,36,.3) 0%,rgba(2,0,36,.3) 10%,rgba(29,140,207,.3) 70%, rgba(136,197,62,.3) 100%);
	display: block;
	top: 0;
	left: 0;
	z-index: 1;
}
#top-banner .swiper-container-topper .swiper-slide .background:after {
	background: rgba(0,0,0,.3);
	z-index: 2;
}*/

#index-banner {
	width: 100vw;
    padding: 30px 50px;
    padding-top: 90px;
}
#index-banner h1 {
	color: #fff;
	text-align: center;
	font-size: 50px;
	margin-top: 30px;
	line-height: 52px;
    margin-bottom: 20px;
} 
#index-banner p {
	font-size: 20px;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

#index,#post-content.resources {
	position: relative;
}

#index:before,.video-outer:before,.image-outer:before,.top-banner-image:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	z-index: 0;
    background-position: 50% 50%;
    opacity: .5;
    background-size: contain;
}

#index .blocks-inner {
	display: flex;
    flex-wrap: wrap;
    padding: 0 15px 100px 15px;
}
#index .blocks-inner .block {
	width: 33.33%;
    padding: 25px;
    position: relative;
    padding-bottom: 20px;
}


#index .blocks-inner .block .block-meta {
	text-align: center;
    background: #222;
    padding: 5px 10px;
    position: absolute;
    line-height: 30px;
    bottom: 0;
    right: 15px;
    max-width: 75%;
}
#index .blocks-inner .block .block-meta p {
	font-size: 15px;
    line-height: 19px;
    margin-top: 1px;
    color: #888;
    transition: color 100ms linear;
}
#index .blocks-inner .block img {
	width:  100%;
	height: 100%;
  object-fit: cover;
}
#index .blocks-inner .block a {
	color:  #fff;
	text-decoration: none;
	transition: color 100ms linear;
}
/*#index .blocks-inner .block a:hover {
	color: #88c53e;
}*/
#index .blocks-inner .block a:hover .block-meta p {
	color:  #fff;
}


#index .blocks-inner .block:nth-child(3n+1) {  /* or 4n+1 */
    transform: translateY(30px);
}
#index .blocks-inner .block:nth-child(3n+3) {  /* or 4n+1 */
    transform: translateY(30px); 
}
#index.case-studies .blocks-inner .block:nth-child(4n+2) {  /* or 4n+1 */
    transform: translateY(30px);
}
#index.case-studies .blocks-inner .block:nth-child(4n+4) {  /* or 4n+1 */
    transform: translateY(30px); 
}
#index.case-studies .blocks-inner .block:nth-child(4n+1),
#index.case-studies .blocks-inner .block:nth-child(4n+3) {
	transform:  none;
}
@media screen and (max-width: 1035px) {
	#index .blocks-inner .block {
		width:  50%;
	}
}
@media screen and (max-width: 678px) {
	#index.impact-conversations .blocks-inner .block h4 {
		font-size: 20px;
		line-height: 1em;
	}
	#index .blocks-inner .block,
	#index.case-studies .blocks-inner .block {
		width:  100%;
	}
	#index .blocks-inner .block:nth-child(3n+1),
	#index .blocks-inner .block:nth-child(3n+3),
	#index.case-studies .blocks-inner .block:nth-child(4n+1),
	#index.case-studies .blocks-inner .block:nth-child(4n+2),
	#index.case-studies .blocks-inner .block:nth-child(4n+3),
	#index.case-studies .blocks-inner .block:nth-child(4n+4) {
		transform:  none;
	}
	#index-banner {
		padding-left:  30px;
		padding-right:  30px;
	}
}

#next-block .frame,#about .about-right .frame,#mission .report-main .frame {
	position: relative;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  padding: 40px 50px 50px 50px;
}
#mission .report-main .frame {
	padding: 50px 50px 40px 50px;
}
#next-block .frame {
	max-width: 100%;
}
#next-block .frame p {
	max-width: unset;
}

#next-block .frame p.small {
	margin-top: 0;
}

#next-block {
	padding: 30px 15px 50px 30px;
    text-align: center;
    display: block;
    color: #fff;
    text-decoration: none;
    cursor:  pointer;
    position: relative;
        background-size: cover;
    z-index: 0;
    background-position: 50% 50%;
}
#next-block.bottom {
	padding-bottom: 90px;
}



#about .about-right {
	cursor: unset;
}
body.single-case_study #next-block,body.single-conversation #next-block {
	padding: 100px 35px;
}
/*#next-block:before,#next-block:after,#about .about-right:before,#about .about-right:after {
	content: '';
	position: absolute;
	top:  0;
	left:  0;
	width:  100%;
	height:  100%;
	display: block;
	background-color: #111419;
	background:  linear-gradient(157deg, rgba(2,0,36,1) 0%,rgba(2,0,36,1) 10%,rgba(29,140,207,1) 70%, rgba(136,197,62,1) 100%);
	opacity: 0.7;
	z-index: -1;
}*/
/*#next-block:after,#about .about-right:after {
	background: #111419;
	opacity: 0.8;
	z-index: -1;
}*/

#next-block h3 {
    font-size: 40px;
}
#next-block p {
	margin-bottom: 10px;
	max-width:  800px;
	margin: 10px auto;
}

#next-block .small {
	font-size: 17px;
	font-weight: bold;
}
#next-block h3 i {
	padding-left:  0;
	transition:  padding 100ms linear;
}
#next-block:hover h3 i {
	padding-left:  5px;
}
#next-block:hover {
	color: #003f5f;
}
body.single-jcpateam #next-block:hover p.position {
	color: #333a3e;
}
#next-block:hover:after {
	background: #fff;
}

#page-banner {
	padding: 50px;
	padding-top: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 65vh;
	/*max-width: 1400px;
	margin:  0 auto;*/
}
#page-banner .text-outer, #page-banner .image-outer {
	max-width: 700px;
}
body.page #page-banner,
body.archive #page-banner,
body.single #page-banner,
body.blog #page-banner {
	min-height: 35vh;
	padding-bottom: 30px;
	align-items: flex-end;
	justify-content: flex-start;
	background: url(/wp-content/themes/jcpa/images/eyes.svg);
	background-size: 10px;
}
body.page #page-banner .text-outer,
body.archive #page-banner .text-outer,
body.single #page-banner .text-outer,
body.blog #page-banner .text-outer {
	text-align:  left;
	width:  100%;
	max-width: 1300px;
	margin: 0 auto;
	padding-left: 0;
	position: relative;
}
body.page #page-banner .text-outer h1,
body.archive #page-banner .text-outer h1,
body.single #page-banner .text-outer h1,
body.blog #page-banner .text-outer h1 {
	margin-bottom: 0;
  position: relative;
  z-index: 1;
  max-width: 100%;
  color: #fff;
  font-weight: normal;
}

body.page #page-banner .text-outer svg {
	position: absolute;
  width: 120px;
  bottom: -30px;
  right: -5px;
  opacity: .5;
  z-index: 0;
}


#page-banner h1,.post-block h2,#next-block h3 {
	line-height: 1.2em;
  margin-bottom: 20px;

}
#page-banner h1 {
	margin-top: 20px;
}
#next-block {
	color: #fff;
	transition: color 100ms linear;
}
#next-block h3 {
	margin: 0;
	font-size: 25px;
	font-weight: normal;
	line-height: 1.2em;
	margin-bottom: 50px;
}


body.single-jcpateam #next-block h3 {
	font-size: 35px;
	margin-bottom: 0;
}
body.single-jcpateam #next-block p.position {
	margin-bottom: 25px;
}



#page-banner p {
	margin-bottom: 20px;
}
#page-banner .tagline p {
	margin-top: 10px;
	margin-bottom:  10px;
	font-size: 20px;
	color: #ccc;
}
#page-banner .tagline p span.subheading-highlight {
  padding: 0 5px 4px 5px;
  display: inline-block;
  line-height: 1.2em;
}
#page-banner .award {
	font-size: 20px;
}
#page-banner .text-outer .small {
	font-size: 13px;
	text-transform: uppercase;
  padding-left: 2px;
  margin-bottom: 2px;
}
#page-banner .button-list, #top-banner .actions, #mission a.cta {
	margin-top:  20px;
}
#page-banner .button-list a, #top-banner .actions a, #mission a.cta {
	display: inline-block;
	margin-right: 20px;
	/*color: #010024;
	transition: color,box-shadow 200ms linear;*/
}
#mission a.cta {
	margin-right: 0;
	margin-top: 0;
}
li.cta-wrap a {
	color: #010024;
	transition: color,box-shadow 200ms linear;
}
a.cta {
	transition: color,box-shadow 200ms linear;
}
/*#page-banner .button-list a:hover,#top-banner .actions a.cta:hover, li:hover .cta, #mission a.cta:hover {
	color: #fff;
	box-shadow: inset 0 -3.25em 0 0 #208ccb;
}*/
header#site-header nav .menu-2024-menu-container ul li:hover a.cta,.menu-footer-menu-container ul li:hover a.cta {
	color:  #fff;
}

a.social {
	font-size: 20px;
}
/*.menu-social-menu-container ul li.menu-item a.social.facebook:after {
	border-color:  #3b5998;
}
.menu-social-menu-container ul li.menu-item a.social.twitter:after {
	border-color:  #1da1f2;
}
.menu-social-menu-container ul li.menu-item a.social.instagram:after {
	border-color:  #C13584;
}*/


/* Division menu */
header#site-header nav .menu-2024-menu-container ul li ul li.has-description a {
	display: flex;
	flex-direction: column;
}
header#site-header nav .menu-2024-menu-container ul li ul li a span:first-child {
	/*border-bottom: solid 2px #5d4d6a;*/
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 3px;
  line-height: 1em;
  padding-bottom: 2px;
  /*border-bottom-color: #5d4d6a;*/
}
header#site-header nav .menu-2024-menu-container ul li ul li.has-description a span:first-child {
	/*border-bottom-color: #5da9e9;*/
}

header#site-header nav .menu-2024-menu-container ul li ul li a:hover span:first-child {
	border-color: #ccc;
}




header#site-header nav .menu-2024-menu-container > ul > li > ul.sub-menu li.has-description a span.menu-item-description {
	word-wrap: break-word;
  white-space: initial;
  font-size: 15px;
  line-height: 16px;
  color: #aaa;
}
header#site-header nav .menu-2024-menu-container > ul > li > ul.sub-menu li.has-description a:hover span.menu-item-description {
	color: #fff;
}



#post-content {
	padding:  30px;
	background: #fff;
	min-height: 20vh;
}
body.page #post-content {
	min-height: 55vh;
}

body.page #post-content.has-next {
	min-height: 20vh;
}

#post-content.layouts {
	padding: 30px 0;
}
#post-content.layouts p {
	margin-bottom: 20px;
	font-size: 16px;
  line-height: 28px;
}

#post-content.layouts blockquote,#about blockquote {
	text-align: center;
  padding: 40px 20px;
  margin: 25px auto;
  position: relative;
  z-index: 2;
  max-width: 800px;
  font-style: italic;
	font-weight: bold;
}
#about blockquote {
	text-align: left;
	padding: 0;
	margin: 10px auto;
	margin-bottom: 30px;
}
#post-content.layouts blockquote p,
#post-content.layouts .layout-mega_list .list-item .content blockquote p {
	font-size: 25px !important;
  line-height: 32px !important;
}
#post-content.layouts blockquote p:first-of-type,#about blockquote p:first-of-type {
	margin-bottom: 0;
}
#post-content.layouts blockquote:before,
#post-content.layouts blockquote:after {
	content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  display: block;
  transition: border 100ms linear;
  z-index: -1;
}
#post-content.layouts blockquote:before {
	top: 0;
  right: 0;
  border-top: solid 3px #d8dda7;
  border-right: solid 3px #d8dda7;
}
#post-content.layouts blockquote:after {
	bottom: 0;
  left: 0;
  border-bottom: solid 3px #d8dda7;
  border-left: solid 3px #d8dda7;
}

#post-content.layouts h1,
#post-content.layouts h2,
#post-content.layouts h3,
#post-content.layouts h4,
#post-content.layouts h5,
#post-content.layouts h6 {
	line-height: 1.1em;
/*	margin-top: 10px;
  margin-bottom: 5px;*/
    margin-top: 25px;
    margin-bottom: 15px;
}
#post-content.layouts h1 {
    font-size: 50px;
    font-weight: normal;
}
#post-content.layouts h5,
#post-content.layouts h6 {
	margin-top: 20px;
}

#post-content.layouts .layout-text,
#post-content.layouts .layout-embed,
#post-content.layouts .layout-outline_box,
#post-content.layouts .layout-spotlight_box,
#post-content.layouts .layout-color_blocks,
#post-content.layouts .layout-side_callout,
#post-content.layouts .layout-sticky_nav {
	max-width: 1400px;
	padding:  15px 50px;
	color:  #333;
	margin: 0 auto;
}
#post-content.layouts .layout-outline_box {
	margin: 50px auto;
}
#post-content.layouts .layout-spotlight_box {
	margin: 20px auto;
}

#post-content.layouts .layout-sticky_nav {
	padding: 30px;
}




/*#post-content.layouts .layout-text {
	padding-bottom: 0;
}*/
#post-content.layouts .layout-buttons {
	padding: 30px;
  text-align: center;
}
#post-content.layouts .layout-buttons .cta.content-cta {
	margin: 10px 25px;

}
#post-content.layouts .layout-buttons .cta.content-cta:hover {
	color: #222;
}



#post-content.layouts h2,
body.page-template-template-team #resource-content h2 {
	font-size: 35px;
	padding-bottom: 8px;
  /*border-bottom: solid 2px #5da9e9;*/
	margin-bottom: 15px;
	display: inline-block;
	margin-top: 20px;
}

#post-content.layouts .layout-text h2 {
	display: block;
}

#post-content.layouts h3 {
	font-size: 30px;
}

#post-content.layouts .layout-mega_list h2 {
	margin-bottom: 25px;
}
#post-content.layouts .layout-text a,
#post-content.layouts .layout-outline_box a,
#post-content.layouts .layout-spotlight_box a,
#post-content.layouts .layout-two_column a {
	color: #033f5f;
}
#post-content.layouts .layout-text a:hover,
#post-content.layouts .layout-outline_box a:hover,
#post-content.layouts .layout-spotlight_box a:hover,
#post-content.layouts .layout-two_column a:hover {
	color: #5da9e9;
}
#post-content.layouts .layout-outline_box {
	padding: 5px 25px 30px 25px;
}
#post-content.layouts .layout-spotlight_box {
	padding: 15px 25px 5px 25px;
}
#post-content.layouts .layout-text ul,
#post-content.layouts .layout-two_column ul,
#post-content.layouts .layout-outline_box ul,
#post-content.layouts .layout-spotlight_box ul,
#post-content.layouts .layout-text ol,
#post-content.layouts .layout-two_column ol,
#post-content.layouts .layout-outline_box ol,
#post-content.layouts .layout-spotlight_box ol {
    margin: 0 0 40px 0;
}
#post-content.layouts .layout-text ul li,
#post-content.layouts .layout-two_column ul li,
#post-content.layouts .layout-outline_box ul li,
#post-content.layouts .layout-spotlight_box ul li,
#post-content.layouts .layout-text ol li,
#post-content.layouts .layout-two_column ol li,
#post-content.layouts .layout-outline_box ol li,
#post-content.layouts .layout-spotlight_box ol li {
    margin-bottom: 10px;
    font-size: 16px;
}
#post-content.layouts .layout-text ul li ul,
#post-content.layouts .layout-two_column ul li ul,
#post-content.layouts .layout-outline_box ul li ul,
#post-content.layouts .layout-spotlight_box ul li ul,
#post-content.layouts .layout-text ol li ul,
#post-content.layouts .layout-two_column ol li ul,
#post-content.layouts .layout-outline_box ol li ul,
#post-content.layouts .layout-spotlight_box ol li ul,
#post-content.layouts .layout-text ol li ol,
#post-content.layouts .layout-two_column ol li ol,
#post-content.layouts .layout-outline_box ol li ol,
#post-content.layouts .layout-spotlight_box ol li ol {
    margin: 10px 0;
}
#post-content.layouts .layout-two_column h4.highlight-title {
	padding: 5px 10px 8px 10px;
  display: inline-block;
}
    


#post-content.layouts .layout-two_column .cta.content-cta {
	font-size: 21px;
}

#post-content.layouts .layout-outline_box .outline-box-inner
 {
	border: solid 5px #111;
  padding: 5px 25px;
}
#post-content.layouts .layout-spotlight_box .spotlight-box-inner {
	border: solid 5px #5d4d6a;
  padding: 5px 25px;
}
#post-content.layouts .layout-outline_box .outline-box-inner h2 {
	margin-top: 15px;
}
#post-content.layouts .layout-spotlight_box .spotlight-box-inner h2 {
	border-bottom: none;
	line-height: 1.3em;
}
#post-content.layouts .layout-spotlight_box .spotlight-box-inner h2 span {
	position: relative;
	z-index: 1;
	display: inline-block;
}
#post-content.layouts .layout-spotlight_box .spotlight-box-inner h2 span.spotlight-label {
	margin-right: 10px;
}
@media screen and (max-width: 700px) {
	#post-content.layouts .layout-spotlight_box .spotlight-box-inner h2 {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	#post-content.layouts .layout-spotlight_box {
		padding-top: 5px;
		margin-top: 0;
	}
	#post-content.layouts .layout-two_column .text-left,
	#post-content.layouts .layout-two_column .text-right {
		margin-bottom: 35px;
	}
}
body #post-content.layouts .layout-spotlight_box .spotlight-box-inner h2 span:before {
	height: 3px;
	bottom: 1px;
}

/* Spotlight */


#post-content.layouts .layout-callout_box {
	display: flex;
	flex-direction:  row-reverse;
	margin: 20px 0 0 0;
	border: none;
	background: #003f5f;
	color: #fff;
} 
#post-content.layouts .layout-callout_box .text {
	padding: 30px;
}
#post-content.layouts .layout-callout_box .text h3 {
	margin-bottom: 20px;
	margin-top: 10px;
	color: #d8dda7;
  font-weight: normal;
}
#post-content.layouts .layout-callout_box .text {
	max-width: 1400px;
	padding:  30px 15px 30px 15px;
	margin: 0 auto;
}
#post-content.layouts .layout-callout_box .text.no-media {
	padding: 30px 45px;
}
#post-content.layouts .layout-callout_box .text.has-media {
	padding: 0;
	display: flex;
	align-items: flex-start;
	flex-direction: row-reverse;
	width: 100%;
}
#post-content.layouts .layout-callout_box .text-inner a,
#post-content.layouts .layout-blocks .post-blocks a,
#post-content.layouts .layout-sticky_nav .sticky-nav-left a {
	color: #fff;
  text-decoration-color: #5da9e9;
  text-decoration-thickness: 2px;
  transition: all 100ms linear;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left a {
	text-decoration-color: transparent;
}
#post-content.layouts .layout-callout_box .text-inner a:hover,
#post-content.layouts .layout-blocks .post-blocks a:hover,
#post-content.layouts .layout-sticky_nav .sticky-nav-left a:hover {
  text-decoration-color: #cb521e;
}
#post-content.layouts .layout-callout_box .text.has-media .img-container {
  width: 50%;
  background-size: cover;
  height: 100%;
  background-position: top center;
}
#post-content.layouts .layout-callout_box .text.has-media .text-inner {
	width: 100%;
	padding: 30px 50px;
	flex: 1;
	max-width: 700px;
}
/*#post-content.layouts .layout-callout_box:nth-of-type(2n+1) .text.has-media {
	flex-direction: row;
}
#post-content.layouts .layout-callout_box:nth-of-type(2n+1) .text.has-media .text-inner {
	padding-right: 65px;
}
#post-content.layouts .layout-callout_box:nth-of-type(2n+2) .text.has-media {
	flex-direction: row-reverse;
}
#post-content.layouts .layout-callout_box:nth-of-type(2n+2) .text.has-media .text-inner {
	padding-left: 50px;
}*/

#post-content.layouts .layout-two_column,
#post-content.layouts .layout-side_callout {
	display: flex;
	width: 100%;
	padding: 20px 50px;
	background: #fff;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: 0 auto;
}
#post-content.layouts .layout-two_column p:last-of-type {
	margin-bottom: 0;
}
#post-content.layouts .layout-two_column h4 {
	margin-bottom: 10px;
}
#post-content.layouts .layout-two_column .text-left,
#post-content.layouts .layout-two_column .text-right,
#post-content.layouts .layout-side_callout .text-main,
#post-content.layouts .layout-side_callout .text-callout-outer,
#post-content.layouts .layout-sticky_nav .sticky-nav-left {
	padding: 0 30px;
	width: 50%;
	display: flex;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left {
	padding: 3px 30px;
}
#post-content.layouts .layout-side_callout .text-main {
	width: 70%;
	flex: 1;
}
#post-content.layouts .layout-side_callout .text-callout-outer {
	width: 30%;
	min-width: 200px;
	position: relative;
}

#post-content.layouts .layout-sticky_nav {
	display: flex;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left {
	top: 140px;
	min-height: 50px;
	height: 100%;
	overflow: auto;
  position: -webkit-sticky;
  position: sticky;
  width: 25%;
  padding-left: 5px;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-right {
	width: 75%;
}

#post-content.layouts .layout-two_column .text-left,
#post-content.layouts .layout-side_callout .text-main {
	justify-content: flex-end;
	padding: 0 45px 0 0;
}
#post-content.layouts .layout-two_column .text-right {
	justify-content: flex-start;
	padding: 0 0 0 45px;
}
#post-content.layouts .layout-two_column .text-left .text,
#post-content.layouts .layout-side_callout .text-main .text {
	text-align: left;
	max-width: 655px;
  width: 100%;
  padding-right: 15px;
}
#post-content.layouts .layout-side_callout .text-main .text {
	max-width: unset;
}
#post-content.layouts .layout-side_callout .text-main .text h4 {
	margin-top: 0;
  font-size: 35px;
}
#post-content.layouts .layout-two_column .text-right .text,
#post-content.layouts .layout-side_callout .text-callout .text {
	text-align: left;
	max-width: 655px;
	width: 100%;
}
#post-content.layouts .layout-two_column .section-title-wrap,
#post-content.layouts .layout-side_callout .section-title-wrap,
body.single-resource .section-title-wrap.section-title {
	width: 100%;
	padding: 0;
}
#post-content.layouts .layout-two_column .section-title-wrap h2,
#post-content.layouts .layout-side_callout .section-title-wrap h2
body.single-resource .section-title-wrap.section-title h2 {
	margin-bottom: 20px;
	margin-top: 0;
}

@media screen and (max-width: 850px) {
	#post-content.layouts .layout-two_column .section-title-wrap,
	#post-content.layouts .layout-side_callout .section-title-wrap {
		padding: 0;
	}
	#post-content.layouts .layout-two_column,
	#post-content.layouts .layout-side_callout {
		flex-direction: column;
		padding: 15px 30px;
	}
	#post-content.layouts .layout-two_column.right-top-mobile {
		flex-direction: column-reverse;
	}
	#post-content.layouts .layout-two_column.right-top-mobile .section-title-wrap {
		order: 2;
	}
	#post-content.layouts .layout-side_callout .text-callout-outer {
		margin-top: 20px;
	}

	#post-content.layouts .layout-two_column .text-left, 
	#post-content.layouts .layout-two_column .text-right,
	#post-content.layouts .layout-side_callout .text-main, 
	#post-content.layouts .layout-side_callout .text-callout {
		width: 100%;
		padding: 0;
	}
	#post-content.layouts .layout-two_column .text-left, #post-content.layouts .layout-two_column .text-right .text,
	#post-content.layouts .layout-two_column .text-left, #post-content.layouts .layout-two_column .text-left .text,
	#post-content.layouts .layout-side_callout .text-main, #post-content.layouts .layout-side_callout .text-main .text,
	#post-content.layouts .layout-side_callout .text-callout, #post-content.layouts .layout-side_callout .text-callout .text {
		max-width: 100%;
	}
	#post-content.layouts .layout-two_column .text-left .text {
		padding-right: 0;
	}

}


#post-content.layouts .layout-blocks {
	padding: 50px 30px;
}
#post-content.layouts .layout-image_grid {
	padding-top: 50px;
	padding-bottom: 50px;
}
#post-content.layouts .layout-blocks .post-blocks {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
#post-content.layouts .layout-blocks .post-blocks .post-block-wrap,
#post-content.layouts .layout-side_callout .text-callout-outer {
	width: 33.33%;
	min-width: 33.33%;
	padding: 15px;
}
#post-content.layouts .layout-blocks .post-blocks.blocks-1 .post-block-wrap {
	width: 50%;
	min-width: 50%;
}
#post-content.layouts .layout-blocks .post-blocks .post-block,
#post-content.layouts .layout-side_callout .text-callout .text {
	flex-direction: column;
	height: 100%;
	color: #fff;
}
#post-content.layouts .layout-blocks .post-blocks .post-block .text,
#post-content.layouts .layout-side_callout .text-callout .text {
	padding: 30px 30px 10px 30px;
	flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#post-content.layouts .layout-side_callout .text-callout .text {
	padding-top: 0;
}
#post-content.layouts .layout-blocks .post-blocks .post-block .text h4,
#post-content.layouts .layout-side_callout .text-callout .text h4 {
	font-weight: normal;
	line-height: 1.2em;
	margin-top: 5px;
}
#post-content.layouts .layout-blocks .block-section-title {
	padding: 0 20px;
	margin-top: 0;
	text-align: center;
}
#post-content.layouts .layout-blocks .post-blocks .post-block img {
	height: 250px;
	width: 100%;
  object-fit: cover;
  object-position: center;
}
#post-content.layouts .layout-blocks .post-blocks .post-block.focus-top img {
	object-position: top center;
}
#post-content.layouts .layout-blocks .post-blocks .post-block.focus-bottom img {
	object-position: bottom center;
}
#post-content.layouts .layout-blocks .post-blocks .post-block .text a.cta.content-cta {
	align-self: flex-end;
	justify-self: flex-end;
	margin-right: 0;
}
/*#post-content.layouts .layout-blocks .post-blocks .post-block .text a i {
	font-size: 15px;
	padding-left: 5px;
	position: relative;
	top: 1px;
	transition: padding 100ms linear;
}*/
/*#post-content.layouts .layout-blocks .post-blocks .post-block .text a:hover i {
	padding-left: 10px;
}*/
#post-content.layouts .layout-blocks .subheading {
	margin-bottom: 0;
}
#post-content.layouts .layout-blocks .block-text {
	padding-top: 20px;
}


body.page #post-content.resources {
	background:  transparent;
	min-height: 0;
	margin: 0 auto 30px auto;
}
#post-content.resources .post-blocks {
	flex-direction:  row;
	flex-wrap:  wrap;
	margin-bottom: 10px;
	margin-top: 10px;
	position: relative;
}
#post-content.resources .post-blocks .post-block {
	width: 33.33%;
	margin-bottom: 15px;
	margin-top: 15px;
}
#post-content.resources h2 {
	font-size: 25px;
	margin-bottom: 20px;
}

.wpforms-container-full {
	max-width:  500px;
}
.wpforms-container-full input {
	max-width:  100% !important;
}
body div.wpforms-container-full .wpforms-form button[type=submit] {
	display: block;
	margin:  !important;
  font-size: 20px;
  padding: 15px 15px;
  height: auto;
  box-shadow: none;
}

.social-share {
	padding-top:  20px;
	padding-bottom:  20px;
	background: #fff;
}
.social-share h5 {
	margin: 0 0 10px 0;
    color: #111;
    font-size: 18px;
    text-align: center;
    font-weight: normal;
}
.social-share {
	text-align: center;
}
.social-share div {
	display: inline-block;
}
.social-share a i {
    opacity: 1;
    transition: opacity 100ms linear;
    background: #007bb5;
    border-radius: 75px;
    color: #fff;
		font-size: 32px;
    padding: 10px 12px;
    margin: 0 10px;
    width: 56px;
    text-align: center;
    height: 56px;
    line-height: 39px;
}
.social-share .share-facebook a i {
	background: #3b5998;
}
.social-share .share-twitter a i {
	background: #000;
}
.social-share .share-linkedin a i {
	background: #007bb5;
}
.social-share a:hover {
	opacity: 0.8;
}
body .social-share {
	background: #fff;
	margin: 0;
	padding: 20px;
	padding-bottom: 150px;
}

body .social-share.has-next-block {
	padding-bottom: 50px;
}

.text-outer {
	padding: 10px 30px 10px 15px;
}
#page-banner .text-outer .type {
	margin-bottom:  5px;
}
.video-outer,.text-outer,.image-outer {
	width:  50%;
}
.top-banner-image,.image-outer {
	padding:  65px 0;
	position: relative;
	display: flex;
  justify-content: center;
  align-items: center;
}
.video-outer {
	padding:  65px 0;
	position: relative;
}
.image-outer img {
	z-index: 1;
  position: relative;
  padding: 30px;
}
#page-banner .image-outer img {
	padding: 0;
}
#page-banner .image-outer {
	padding: 0;
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}
#page-banner .page-banner-inner {
	display: flex;
  align-items: flex-end;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

body.page #page-banner.has-background,
body.archive #page-banner.has-background,
body.single #page-banner.has-background,
body.blog #page-banner.has-background {
	background-size: cover;
	background-position: center;
}
body.page #page-banner.has-background:after,
body.archive #page-banner.has-background:after,
body.single #page-banner.has-background:after,
body.blog #page-banner.has-background:after {
	background: linear-gradient(180deg, rgba(0,63,95,.8), rgba(0,63,95,1));
	opacity: .97;
}

/* Resource */
body.single-resource #page-banner.has-media {
	align-items: center;
}
body.single-resource #page-banner.has-media .text-outer {
	max-width: 700px;
}
body.single-resource .image-outer {
	padding: 20px 0;
}
body.single-resource .image-outer img {
	max-width: 300px;
  max-height: 400px;
  object-fit: contain;
}


#top-banner .swiper-container-topper  .swiper-slide .top-banner-text {
	width:  38%;
	padding: 20px;
	max-width: 650px;
}
#top-banner .swiper-container-topper  .swiper-slide .top-banner-image {
	width: 62%;
	max-width: 750px;
}
@media screen and ( min-width: 1400px ) {

}
@media screen and ( max-width: 900px ) {
	#top-banner .swiper-container-topper  .swiper-slide .slide-inner {
		min-height: 80vh;
		flex-direction: column;
	}
	#top-banner .swiper-container-topper  .swiper-slide .slide-inner .top-banner-text,
	#top-banner .swiper-container-topper  .swiper-slide .slide-inner .top-banner-image {
		width: 100%;
	}
}
@media screen and (max-width: 725px) {
	#post-content.layouts .layout-blocks .post-blocks .post-block-wrap,
	#post-content.layouts .layout-blocks .post-blocks.blocks-1 .post-block-wrap {
		width: 100% !important;
		padding: 0;
	}
	#post-content.layouts .layout-blocks .post-blocks {
		flex-direction: column;
	}
}
@media screen and ( max-width: 650px ) {
	#home-top .right  {
		flex-direction: column;
	}





	#top-banner .swiper-container-topper  .swiper-slide .slide-inner .top-banner-text {
		display: block;
	}
	#post-content.layouts .layout-two_column .text-left,
#post-content.layouts .layout-two_column .text-right {
	width: auto;
	overflow: hidden;
}
	#mission .report-main .frame {
		padding: 40px 30px 30px 30px;
	}
	
	
	#top-banner .swiper-container-topper  .swiper-slide .top-banner-text,
	#top-banner .swiper-container-topper  .swiper-slide .top-banner-image {
		width:  100%;
	}
	#page-banner {
		flex-direction: column-reverse;
		padding-left: 30px;
		padding-right: 30px;
	}
	#page-banner .page-banner-inner {
		flex-direction: column-reverse;
	}
	#post-content.layouts .layout-text,
	#post-content.layouts .layout-outline_box,
	#post-content.layouts .layout-callout_box .text {
		padding-left: 30px;
		padding-right: 30px;
	}
	#post-content.layouts .layout-callout_box .text.has-media,#post-content.layouts .layout-callout_box:nth-of-type(2n+1) .text.has-media,#post-content.layouts .layout-callout_box:nth-of-type(2n+2) .text.has-media {
		flex-direction: column;
	}

	#post-content.layouts .layout-callout_box .text.has-media .img-container {
		width: 100%;
		min-height: 300px;
	}
	body.page #page-banner .text-outer,
	body.archive #page-banner .text-outer,
	body.page #page-banner .text-outer,
	body.archive #page-banner .text-outer,
	body.single #page-banner .text-outer,
	body.single #page-banner .text-outer {
		padding-left: 0;
	}
	body.page #page-banner .text-outer h1, 
	body.archive #page-banner .text-outer h1, 
	body.single #page-banner .text-outer h1, 
	body.blog #page-banner .text-outer h1 {
		font-size: 28px;
	}
/*	body.page #page-banner .text-outer {
		padding-left: 15px;
	}*/
	.video-outer,.text-outer,.image-outer {
		width:  100%;
	}
	.image-outer {
		padding-top: 10px;
    padding-bottom: 10px;
	}
	.text-outer {
		padding: 10px 15px 10px 15px;
	}

}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.layout-embed .video-wrapper {
	position: static;
	height: auto !important;
	padding-bottom: 15px;
}

.layout-embed .video-wrapper iframe {
	position: static;
	width: 100% !important;
	height: auto !important;
}

footer {
	background: #333a3e;
	width:  100%;
	padding:  5px 30px 90px 30px;
	display: flex;
  justify-content: space-between;
  position: relative;
}
footer .privacy-link {
	padding-right: 33px;
	font-size: 15px;
}
footer .privacy-link a {
	color: #ccc;
	
}
footer .privacy-link a:first-of-type {
	padding-right: 10px;
}
footer img {
	max-width:  330px;
}

footer .left-col {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding-top: 10px;
	flex-direction: column;
	max-width: 48%;
}
footer .left-col .menu-2024-menu-container ul {
	padding-left: 0;
	margin-left: -10px;
}
footer .left-col .menu-social-menu-container ul {
	padding-left: 0;
	margin-top: 9px;
}
footer .left-col .menu-2024-menu-container .hide-footer {
	display: none;
}
#menu-social-menu li a {
	padding: 10px 13px 10px 10px;
	font-size: 25px;
	color: #aaa;
}

/*#menu-social-menu li a:hover i.fa-twitter {
	color: #1da1f2;
}
#menu-social-menu li a:hover i.fa-linkedin {
	color: #007bb5;

}*/


.id_43e45531-2d94-4f8a-8ddc-f714cba8f104 .sli-button, .id_43e45531-2d94-4f8a-8ddc-f714cba8f104 input.sli-button, .id_43e45531-2d94-4f8a-8ddc-f714cba8f104 button.sli-button, .id_43e45531-2d94-4f8a-8ddc-f714cba8f104 a.sli-button, .id_43e45531-2d94-4f8a-8ddc-f714cba8f104 ul.sli-style-button .sli-amount-label {
	background: rgba(3,63,95,1) !important;
}

#subscribe-wrap {
	position: relative;
	background: #333a3e;
	margin-bottom: -80px;
}

#subscribe {
	position: relative;
width: 74%;
    left: 13%;
    background: #d8dda7;
    top: -80px;
    z-index: 2;
    color: #222;
    padding: 30px;
    display: flex;
    align-items: center;
   /* border: solid 1px #74776b;*/
}
#subscribe:after,
#subscribe:before {
	content: '';
  position: absolute;
  width: calc(100% - 60px);
  width: 50%;
  height: 30%;
  display: block;
  top: -10px;
  left: -10px;
  z-index: -1;
 	border-top: solid 5px #74776B;
  border-left: solid 5px #74776b;
}
#subscribe:after {
	left: auto;
	top: auto;
	bottom: -10px;
	right: -10px;
	border-top: none;
	border-left: none;
	border-right: solid 5px #5da9e9;
  border-bottom: solid 5px #5da9e9;
}
#subscribe p {
	padding-right: 30px;
	line-height: 22px;
	font-size: 17px;
	flex: 2;
}
body .wpforms-container .wpforms-field-label {
	font-weight: normal;
}
body .layout-two_column div.wpforms-container-full {
    margin: 24px 5px;
    width: 100%;
    max-width: calc(100% - 15px);

}
body .wpforms-container .wpforms-field {
    padding: 0 0 30px 0;
    position: relative;
}
body div.wpforms-container-full input[type=submit]:not(:hover):not(:active), 
body div.wpforms-container-full button[type=submit]:not(:hover):not(:active), 
body div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
	background: #cb521e;
	color: #fff;
	border-radius: 0;
}
body div.wpforms-container-full input[type=submit]:hover, 
body div.wpforms-container-full input[type=submit]:active, 
body div.wpforms-container-full button[type=submit]:hover,
body div.wpforms-container-full button[type=submit]:active, 
body div.wpforms-container-full .wpforms-page-button:hover, 
body div.wpforms-container-full .wpforms-page-button:active {
	background: transparent;
}

.layout-two_column .outline {
	background: #003f5f;
	margin: 30px 0;
	padding: 15px;
	color: #fff;
	font-weight: bold;
	display: inline-block;
}
#post-content.layouts .layout-two_column .outline a {
	color: #d8dda7;
}

#subscribe .at .at-text,
#jcpa-popup .jcpa-popup-form .at .at-text {
	/*visibility: hidden;*/
	margin: 0;
	padding-right: 5px;
	/*font-size: 0;*/
}
#subscribe .at .at-text:last-of-type,
#jcpa-popup .jcpa-popup-form .at .at-text:last-of-type {
	padding-right: 0;
}
#subscribe .at .at-text *,
#jcpa-popup .jcpa-popup-form .at .at-text * {
	visibility: visible;
	margin: 0;
}
#subscribe .at .at-text input,
#jcpa-popup .jcpa-popup-form .at .at-text input,
.sf-field-search input,
#post-content.layouts .post-password-form p:nth-of-type(2) label input {
	background: rgba(255,255,255,.9);
  border: solid 1px #74776b;
  color: #111;
  font-size: 18px;
  padding: 10px;
  font-family: 'Noto Sans', sans-serif;
  border-radius: 0;
  min-height: 46px;
}

#subscribe .at .at-row.FirstName.LastName,
#jcpa-popup .jcpa-popup-form .at .at-row.FirstName.LastName {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
#subscribe .at .at-row.EmailAddress,
#jcpa-popup .jcpa-popup-form .at .at-row.EmailAddress {
	margin-top: 5px;
	margin-bottom: 10px;
}

#subscribe .at-row>[class^=at-],
#jcpa-popup .jcpa-popup-form .at-row>[class^=at-] {
	min-width: 180px;
}
#jcpa-popup .jcpa-popup-form .at-row>[class^=at-] {
	color: #fff;
}
#jcpa-popup .jcpa-popup-form .ngp-form {
	margin: 0;
	width: 100%;
}
#subscribe .at-markup.UpdateMyProfile,
#jcpa-popup .jcpa-popup-form .at-markup.UpdateMyProfile {
	margin-bottom: 10px;
}

#jcpa-popup .jcpa-popup-form .updateMyProfileSection .text {
    color: #ddd;
}

.subscribe-text {
	margin-bottom: 15px;
}
.subscribe-text h2 {
	margin-bottom: 15px;
}


body.page-id-536 .at .at-text.error input[type=text]:required:focus, .at .error input[type=email]:required:focus, .at .error input[type=tel]:required:focus, .ui-datepicker .ui-datepicker-header, div.ui-timepicker-container.ui-timepicker-standard, section.fastaction-modal div.fa-modal-wrapper, section.fastaction-modal div.fa-modal-inner, form label.label-amount input.edit-otheramount, .at label select, .at label select:focus, ul.iti__country-list, .fastAction.clearfix p, span.select2-results, span.select2-container--open .select2-dropdown--above, html, .select2-container--open .select2-dropdown--below, .panel-content, section.at-inner, .at-fields, .at label.at-select textarea, .select2-container--default .select2-selection--multiple .select2-selection__rendered li, div.poweredby {
    background-color: transparent !important;
}

body.page-id-536 form .at-radio .at-radios .label-amount input[type=radio]+a {
    background-color: rgba(0, 73, 103,.5);
    color: #FFFFFF;
    border-radius: 0;
}

body.page-id-536 form .at-radio .at-radios .label-amount input[type=radio]:checked+a, body form .at-radio .at-radios .label-amount input[type=radio]:checked:hover+a {
    background-color: #004967;
    color: #FFFFFF;
}

body.page-id-536 .at .btn-at-primary {
    background-color: #228ae6;
    border-color: rgba(0,0,0,0);
    color: #fff;
    outline: 0;
    border-radius: 0;
}

body.page-id-536 a.nextStep.btn-at-primary, body .submitStep.btn-at.btn-at-primary {
    background-color: rgba(0, 73, 103,.5);
    color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    text-shadow: none;
}
body.page-id-536 a.nextStep.btn-at-primary {
	background-color: rgba(0, 73, 103,1);
}

body.page-id-536 .elementor-1158 .elementor-element.elementor-element-58ae1ff4 .elementor-element-populated a:hover {
    color: #fff;
}

body.page-id-536 a:hover#fastaction-widget-signup, body a:hover#fastaction-widget-signup, body .at a:hover, body .at p a:hover, body .at a strong:hover, body .at a em:hover, body .at a u:hover, body .at a h1:hover, body .at a h2:hover, body .at a h3:hover, body .at a h4:hover, body .at a h5:hover, body .at a h6:hover, body .at a h7:hover, body .at a h8:hover, body .at a h9:hover, body .at a abbr:hover, body .at a cite:hover, body .at a i:hover, body .at a mark:hover, body .at a q:hover, body .at a small:hover, body .at a span:hover, body .at a sub:hover, body .at a sup:hover, body .at a time:hover, body a:hover#fastaction-widget-signup, body a:hover#fastaction-widget-signup, body a:hover#signup-fastaction-facebook, body a:hover#signup-fastaction-twitter, body a:hover#fastaction-signup-inner p.fa-modal-notusing-wrapper>a, body .at a:hover.at-show-tweet, body .at a:focus.at-show-tweet, body a:hover.fastaction-logout, body a:hover#fastaction-widget-login.call-modal, body a.prevStep.btn-at-link, body .at-preview-ecard.btn-at.btn-at-link:hover {
    color: #004967;
    font-family: Arial,Helvetica,sans-serif;
}

body.page-id-536 .at .at-step.active>:before, body .at .at-step.active a:before {
    background: #004967;
}

body.page-id-536 header.at-title {
	display: none;
}

body.page-id-536 .at img {
    max-width: 100%;
    width: 100% !important;
    height: auto !important;
}


#post-content.layouts .post-password-form p:nth-of-type(2) label input {
	margin-left: 10px;
}
#search-filter-form-9076 {
	padding-top: 15px;
}
.searchandfilter ul li.sf-field-search {
	flex: 1;
}
.sf-field-search label,
.sf-field-search input {
	width: 100%;
}
#subscribe .at .at-text input::placeholder,
#jcpa-popup .jcpa-popup-form .at .at-text input::placeholder,
.sf-field-search input::placeholder {
	color: #999;
}
#subscribe .at-form-submit.clearfix,
#jcpa-popup .jcpa-popup-form .at-form-submit.clearfix {
	padding: 0;
}
#subscribe .at-form-submit.clearfix input,
#jcpa-popup .jcpa-popup-form .at-form-submit.clearfix input,
.sf-field-submit input {
	background: #033f5f;
    color: #fff;
    outline: none;
    border: none;
    padding: 12px 15px;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: normal;
    border-radius: 0;
    margin: 0;
    margin-top: 10px;
    width: 100%;
    transition: background 100ms linear;
}
.sf-field-submit input {
	margin-top: 0;
}
#jcpa-popup .jcpa-popup-form .at-form-submit.clearfix input {
	background: #5da9e9;
}
#subscribe .at-form-submit.clearfix input:hover,
#jcpa-popup .jcpa-popup-form .at-form-submit.clearfix input:hover {
	background: #cb521e;
}
#subscribe .subscribe-form,
#jcpa-popup .jcpa-popup-form  {
	display: flex;
	flex: 2;
	max-width: 50%;
	min-width: 50%;
}
#jcpa-popup .jcpa-popup-form {
	max-width: 100%;
}
#subscribe .at form,
#jcpa-popup .jcpa-popup-form .at form {
	margin: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}

#subscribe .at-form .YesSignMeUpForUpdatesForBinder,
#subscribe .at-form fieldset legend,
#jcpa-popup .jcpa-popup-form .at-form .YesSignMeUpForUpdatesForBinder,
#jcpa-popup .jcpa-popup-form .at-form fieldset legend {
	display: none;
}
#subscribe .at .at-inner,
#jcpa-popup .jcpa-popup-form .at .at-inner {
	background: transparent;
	position: relative;
}
#subscribe .at .at-inner .error,
#jcpa-popup .jcpa-popup-form .at .at-inner .error {
	color: black;
  padding-left: 2px;
}
#jcpa-popup .jcpa-popup-form .at .at-inner .error {
	color: #fff;
}

#subscribe .at .at-fieldset,
#jcpa-popup .jcpa-popup-form .at .at-fieldset {
	min-width: 0;
	padding: 0;
  margin: 0;
}

#jcpa-popup .jcpa-popup-form .at {
	margin-bottom: 20px;
}

@media screen and (max-width: 1080px) {
	#subscribe .at .at-text input,
	#jcpa-popup .jcpa-popup-form .at .at-text input {
		min-height: 45px;
	}
}

@media screen and (max-width: 570px) {
	#subscribe .subscribe-form form,
	#jcpa-popup .jcpa-popup-form form {
		flex-direction: column;
	}
	#subscribe .at .at-text input,
	#subscribe .at-form-submit.clearfix input,
	#jcpa-popup .jcpa-popup-form .at .at-text input,
	#jcpa-popup .jcpa-popup-form  .at-form-submit input {
		width: 100%;
		margin-bottom: 10px;
		margin-top: 0;
	}
}


footer .right-col {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
  padding-top: 10px;
}
footer .right-col .top-ctas .cta {
	color: #fff;
	font-weight: normal;

}
footer .right-col .top-ctas .cta:hover {
	color: #bcacc3;
}
.copyright {
	color: #ccc;
	line-height: 1.1em;
	padding-bottom: 6px;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 30px;
	text-align: left;
	font-size: 15px;
}

footer .menu-2024-menu-container ul {
	display: block;
	margin: 0;
}
footer .menu-2024-menu-container ul li {
	list-style-type: none;
	margin: 0 0 0 12px;
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 10px;
}
footer .menu-2024-menu-container ul li a {
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}

footer .menu-footer-menu-container ul {
	padding-bottom: 5px;
	display: block;
}
footer .menu-footer-menu-container ul li {
	display: inline-block;
}
/*footer .menu-footer-menu-container ul li.menu-item:last-of-type a:after {
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 24px;
    right: 0;
    margin: auto;
    width: calc(100% - 20px);
    height: 100%;
    content: '.';
    color: transparent;
    border-bottom: solid 2px #5da9e9;
    visibility: none;
    opacity: 1;
    z-index: -1;
    transition: all 200ms;
    border-radius: 0;
}*/
footer .menu-footer-menu-container ul li.menu-item a:hover {
	color: #bcacc3;
}
footer .menu-footer-menu-container ul li.menu-item a:hover:after {
	border-bottom-color: #fff;
}

@media screen and (max-width: 950px) {
	footer {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-top: 20px;
	}
	#subscribe {
		width: 84%;
		left: 8%;
	}
	.copyright {
		border-right: none;
		padding: 0;
		margin-bottom: 10px;
		margin-top: 30px;
	}
	footer .privacy-link {
		padding-right: 0;
	}
	.right-menu {
		flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	}
	.menu-footer-menu-container ul li a {
    text-decoration: underline;
    font-size: 15px;
	}
	.menu-footer-menu-container {
		width: 100%;
	}
	footer .right-menu .menu-footer-menu-container ul {
		text-align: center;
	}
	.menu-footer-menu-container.donate-menu {
		width: auto;
	}
	.menu-footer-menu-container ul li, .menu-social-menu-container ul li {
		margin: 5px;
	}
	.menu-footer-menu-container ul,.menu-social-menu-container ul {
		justify-content: center;
		padding-left:  0;
		padding: 0;
	}
	.bottom-ctas {
		display: none;
	}
	footer .left-col {
		align-items: center;
		max-width: 100%;
	}
	footer .menu-2024-menu-container ul {
		display: block;
		text-align:  center;
	}
	footer .menu-2024-menu-container ul li {
		display: inline-block;
		width: 45%;
	}
	body #menu-social-menu {
		padding-right: 0;
	}
	body #menu-social-menu li a {
		padding: 10px;
	}
}

#report-modal {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.6);
	display: none;
}
body.modal-active #report-modal {
	display: flex;
	z-index: 5;
}
.modal-inner {
	background: #eee;
	padding: 50px;
	color: #333;
	text-align: center;
}

/* New Top */
#home-top {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
	z-index: 2;
	padding-top: 17vh;
	/*background: #eee;*/
}
#page-banner {
	z-index: 2;
	position: relative;
	padding-top: 22vh;
}
#news-featured {
	position: relative;
	z-index: 2;
}
#home-top:after,#page-banner:after,#next-block:after {
	content: '';
	position: absolute;
  top: 96px;
  left: 25px;
  width: 100%;
  height: 100%;
	display: block;
	z-index: -1;
	background: linear-gradient(135deg, rgba(0,63,95,.9), rgba(0,63,95,.8));
}
#page-banner:after,#next-block:after {
	top: 0;
	left: 0;
	background: rgba(3,63,95,.97);
}
#news-featured:after {
	background: #003f5f;
}

#home-top:after {
	opacity: .97;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}




#home-top .left, #home-top .right {
	width: 50%;
	padding: 30px;
	text-align: left;
	justify-content: center;
	position: relative;
	z-index: 1;
	max-width: 700px;
}
#home-top .left {
	width: 50%;
	padding: 30px 21px 30px 42px;
	flex-direction: column;
}
#home-top .right {
	width: 50%;
}
@-webkit-keyframes topTextLeft {
	0% {
  	transform:  translateX(-5px);
  	opacity: 0;
  }
 	100% {
  	transform:  translateX(0);
  	opacity: 1;
  }
}
@keyframes topTextLeft {
  0% {
  	transform:  translateX(-5px);
  	opacity: 0;
  }
	100% {
  	transform:  translateX(0);
  	opacity: 1;
  }
}
@-webkit-keyframes topTextRight {
	0% {
  	transform:  translateY(5px);
  	opacity: 0;
  }
 	100% {
  	transform:  translateY(0);
  	opacity: 1;
  }
}
@keyframes topTextRight {
  0% {
  	transform:  translateY(5px);
  	opacity: 0;
  }
	100% {
  	transform:  translateY(0);
  	opacity: 1;
  }
}
#home-top .left h2 {
  font-size: 40px;
  line-height: 1.25em;
  font-weight: bolder;
  font-family: 'Merriweather', serif;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(-5px);
  animation-name: topTextLeft;
	animation-duration: 500ms;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 1500ms;
}

#home-top .left h2 span {
  /*display: inline-block;
  position: relative;*/
  font-weight: 600;
  color: #d8dda7;
}
/*#home-top .left h2 span:before,
#post-content.layouts .layout-spotlight_box .spotlight-box-inner h2 span:before {
	content: '';
  width: 0;
  height: 5px;
  position: absolute;
  background: #4b97a9;
  z-index: -1;
  bottom: 0px;
  left: 1px; 
  opacity: 1;
  animation: highlightSlide 500ms ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 800ms;
}*/
#home-top .left p {
    font-size: 25px;
  line-height: 1.2em;
  margin-top: 10px;
}

#home-top .right {
	margin: 0;
	padding: 30px 42px;
	display: flex;
	flex-direction: row;
  align-items: center;
  flex: 1;
  opacity: 0;
  transform: translateX(-5px);
  animation-name: topTextRight;
	animation-duration: 500ms;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 1800ms;
}
#home-top .right ul {
	display: flex;
	margin: 0;
	align-items: left;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  max-width: 50%;
}
#home-top .right ul li {
    padding: 5px;
    background: transparent;
    width: auto;
    flex: 1;
}

#home-top .right ul li a {
    display: block;
    padding: 0;
    line-height: 1.1em;
    font-size: 19px;
    text-decoration: none;
    background: #414e4a;
    color: #fff;
    width: 100%;
    font-family: 'Noto Sans', sans-serif;
    font-weight: bold;
    letter-spacing: -0.01em;
    border: solid 2px #555;
    transition: color,background 100ms linear;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
#home-top .right ul li a svg, #next-block svg {
	height: 80px;
  display: block;
  width: 80px;
  margin: 0;
}

#home-top .right ul li a span {
	padding: 0 15px 0 15px;
	text-align: left;
	flex: 1;
	padding-bottom: 0;
}
#home-top .right ul li a svg,
header#site-header nav ul.sub-menu li svg {
	margin: 6px;	
	padding: 6px;
	border-style: solid;
	border-width: 5px;
	background: transparent;
	transition: background 100ms linear;
}

#home-top .right ul li a svg path,
header#site-header nav ul.sub-menu li svg path {
	fill: #fff;
	stroke: #fff;
	stroke-width:  2px;
	transition: fill,stroke 100ms linear;
}

#home-top .right ul li a svg.no-stroke path,
header#site-header nav ul.sub-menu li svg.no-stroke path {
	stroke-width: 0;
}
#home-top .right ul li a i {
    padding-right: 5px;
    font-size: 21px;
    color: #1d8ccf;
    color: #8ac43d;
    position: relative;
    top: -1px;
    transition: color 100ms linear;
}
#home-top .right ul li a:hover {
	background: #414e4a;
	/*color: #222;*/
	border-color: #eee;
	color: #fff;
}
#home-top .right ul li a:hover svg path,
header#site-header nav ul.sub-menu li a:hover svg path {
	fill: #222;
	stroke: #222;
}
#home-top .right ul li a:hover svg,
header#site-header nav ul.sub-menu li a:hover svg {
	background: #fff;
}
#home-top .right ul li a:hover i {
	color: #1d8ccf;
}
#home-top {
  padding: 90px 25px 70px 25px;
  background-size: cover; 
  background-attachment: fixed;
  background-position: right top;
  border-bottom: solid 2px #033f5f;
}
#home-top .left {
	flex: 1;
  display: flex;
}

#home-top .next-arrow {
	position: absolute;
	bottom: 10px;
	font-size: 50px;
	color: rgba(30,30,30,.6);
	animation: nextArrow 1500ms ease-in-out;
	animation-iteration-count: infinite;
	left: calc(50% - 36px);
}
@media screen and ( max-width: 850px ) {
	#home-top .next-arrow {
		display: none;
	}
}
/*@media screen and ( max-width: 1500px ) {
	#home-top {
		padding-top: 110px;
	}
}*/
@media screen and ( max-width: 1174px ) {
	#home-top .left h2 {
		font-size: 32px;
	}
}

@media screen and ( max-width: 985px ) {
	#home-top .left h2 {
		font-size: 26px;
	}
}

@media screen and ( max-width: 850px ) {
/*	#home-top .left p {
		font-size: 35px;
	}*/
	#page-banner {
		padding-top: 150px;
	}
	#page-banner {
		padding-left: 30px;
		padding-right: 30px;
	}
	#home-top {
		flex-direction: column;
		padding-top: 150px;
		padding-bottom: 5px;
	}
	#home-top .right ul li {
		padding-left: 0;
		padding-right: 0;
	}
	#home-top .left {
		width: 100%;
		flex:  0;
		text-align: center;
		padding: 30px;
	}
	#home-top .left h2 {
		font-size: 40px;
	}
	#home-top .right {
		max-width: 100%;
		width: 100%;
    margin: 0;
    margin-bottom: 25px;
    align-self: center;
	}
	#home-top .right ul {
		padding: 0 15px;
    width: 100%;
    max-width: 100%;
	}
	#post-content.layouts .layout-text,
	#post-content.layouts .layout-color_blocks
	 {
		padding: 15px 30px 0 30px;
	}
	#post-content.layouts .layout-outline_box {
		padding: 10px;
	}
	#post-content.layouts .layout-side_callout .text-callout-outer {
		width: 100%;
	}
	#post-content.layouts .layout-callout_box .text.no-media {
		padding: 30px;
	}
}
@media screen and (max-width: 1090px) {
	#post-content.layouts .layout-sticky_nav {
		flex-direction: column;
	}
	#post-content.layouts .layout-sticky_nav .sticky-nav-left {
		position: static;
		width: 100%;
    padding: 0 3px;
	}
	#post-content.layouts .layout-sticky_nav .sticky-nav-right {
		width: 100%;
	}
}
@media screen and ( max-width: 810px ) {
	#home-top .right ul {
		flex-direction: column;
	}
}
@media screen and ( max-width: 605px ) {

/*	#home-top:before {
		background: linear-gradient(170deg, rgba(2,0,36,.9) 0%,rgba(2,0,36,.9),45%,rgba(2,0,36,.1) 10%,rgba(29,140,207,.2) 100%);
	}*/

	#home-top,#page-banner {
		padding-top: 150px;
	}
	#home-top .left,#home-top .right {
		padding: 30px;
	}
	#home-top .right {
		/*padding: 30px 15px 100px 15px;*/
		padding: 30px 15px 30px 15px;
	}
	#home-top .left {
		max-width: 100%;
	}
	#home-top .left h2 {
		font-size: 33px;
	}
	#home-top .left p {
		font-size: 22px;
	}
	body.page #page-banner,
	body.single #page-banner {
		min-height: 40vh;
	}
	body.single-jcpateam #page-banner {
		padding-bottom: 20px !important;
    padding-top: 125px;
    transition: padding-top 150ms linear;
	}
	body.single-jcpateam.search-active #page-banner {
		padding-top: 205px;
	}
}
@media screen and ( max-width: 530px ) {
	#home-top .left h2 {
		font-size: 22px;
	}
}





#home-list ul {
	padding: 0;
	margin: 0;
	display: flex;
	width:  100%;
}
#home-list ul li {
	list-style-type: none;
	flex:  1;
	text-align: center;
	margin:  0;
	padding:  0;
}
#home-list ul li a,#home-top .right ul li {
	list-style-type: none;
	flex:  1;
	text-align: center;
	font-family: 'Noto Sans', sans-serif;

	background: #1a2012;
    border-top:  solid 2px #3c4928; 
    border-bottom:  solid 2px #3c4928;
    border-left:  solid 1px #3c4928; 
    border-right:  solid 1px #3c4928; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border-color: #aaa;
    border-width: 0;
}
#home-list ul li a {

	text-decoration: none;
    font-size: 30px;
    line-height: 32px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 50px 30px;
    transition: color,background 100ms linear;
    background: #eee;
    color: #222;
}
#home-list ul li a i {
	font-size: 50px;
    margin-bottom: 20px;
    color: #cccccc;
    transition: color 100ms linear;
    color: #1d8ccf;
}

#home-list ul li a:hover i {
	color: #1d8ccf;
	color: #fff;
}
#home-list ul li a:hover {
	background: #222a17;
	background: #1d8ccf;
	color: #222;
}

#overview {
	    background: linear-gradient(135deg, rgba(0,0,0,.5), rgba(136,197,62,.2));
    padding: 40px 30px;
    text-align: center;
   background: rgba(30,30,30,.75);
}
#overview p {
	font-size: 24px;
	line-height: 1.2em;
	color: #1d8ccf;
	color: #eee;
	font-weight: bold;
	letter-spacing: -0.05em;
/*	max-width: 600px;
	margin: 0 auto;*/
}

#mission {
	display: flex;
	position: relative;
	z-index: 2;
	overflow: hidden;
	border-top: solid 2px #111;
	border-bottom: solid 2px #111;
}
#mission:before,#mission:after {
	content: '';
	position: absolute;
	top: -7px;
  left: -7px;
  display: block;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
	background-size: cover;
  background-position: 50% 50%;
  opacity: .2;
  z-index: -1;
  filter: blur(15px);
}
#mission:after {
	background: rgba(0,0,0,.65);
  opacity: 1;
}
#mission .report-main {
	padding: 50px;
	width: 40%;
	display: flex;
  justify-content: center;
  align-items: center;
}
#mission .report-main h3 {
	font-size: 30px;
	margin-bottom: 20px;
}
#mission .report-main a.h3 {
	transition: none;
}
#mission .report-main a:hover h3 {
	color: #8ac43d;
}
#mission .report-main a {
	text-decoration: none;
}
#mission .report-main p {
	font-size: 20px;
	margin-bottom: 40px;
}
#mission .report-main a {
	font-size: 20px;
}
#mission .focus-areas {
	width: 60%;
	padding: 30px;
}
#mission .focus-area {
	display: flex;
	margin: 20px 0;
	text-decoration: none;
	color: #fff;
	position: relative;
	transition: border-color 100ms linear;
}
#mission .focus-area:hover {
	border-color: #eee !important;
}
#mission .focus-area img {
	max-width: 300px;
	height: 200px;
	object-fit: cover;
	/*transition: max-width 100ms linear;*/
}
/*#mission .focus-area:hover img {
	max-width: 325px;
}*/
#mission .focus-area .focus-meta {
	padding: 10px 30px 10px 30px;
	display: flex;
	flex-direction: column;
	
	flex: 1;
}
#mission .focus-area .focus-meta h4 {
	font-size: 28px;
}
#mission .focus-area .focus-meta p {
	font-size: 18px;
}
#mission .focus-area .focus-meta button {
	background: rgba(255,255,255,0);
	color: #fff;
	outline: none;
	position: absolute;
	bottom: -5px;
	right: 10px;
	font-size: 20px;
	border: none;
	margin: 0;
	padding: 10px;
	transition: color 100ms linear;
}
#mission .focus-area:hover .focus-meta button {
	color: #1d8ccf;
}

#research {
	position: relative;
	top: -100px;
}

@media screen and (max-width:  640px) {
	#mission .focus-areas .focus-area {
		flex-direction: column;
    padding-bottom: 30px;
	}
	#mission .focus-areas .focus-area img {
	  max-width: 100%;
    height: auto;
  }
}



#about {
	/*background: #fff;*/
	/*background: linear-gradient(135deg, rgba(93, 77, 106,.94) 0%,rgba(93, 77, 106,.96) 50%,rgba(93, 77, 106,.94) 100%);*/
	width: 100%;
	color: #333;
	/*border-top: solid 2px #333;
	border-bottom: solid 2px #333;*/
	background: rgba(116,119,107,.8);
	position: relative;
	background: rgba(10,10,10,.8);
}
#about video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  z-index: -1;
  object-fit: cover;
}
#about .about-inner {
	max-width:  1400px;
	margin:  0 auto;
	display: flex;
	/*padding: 50px 57px;*/
	justify-content: space-between;
	align-items: center;
}

#about .about-inner .about-left	{
	width: 35%;
}
#about .about-inner .about-right	{
	width: 55%;
	padding: 50px 57px;
}
#about .about-inner .about-left {
	/*padding: 0 30px 0 0;*/
}
#about .about-inner .about-left .about-left-inner {
	/*border: solid 3px #3f3f3f;*/
	/*padding: 5px;*/
	/*border: solid 3px #333; */
}
#about .about-inner .about-left .about-left-inner .about-left-content {
	background: #fff;
	padding: 30px;
	position: relative;
	background: linear-gradient(135deg, #033f5f, #02273a);
  color: #fff;

}

#about .cta.content-cta {
	/*border: solid 2px #cb521e;
    background: transparent;*/
    margin-top: 20px;
}


#about p {
	margin-bottom: 25px;
	font-size: 18px;
  line-height: 26px;
}
#about h3 {
	margin-bottom: 15px;
  font-weight: normal;
  font-size: 35px;
}
#about .about-inner .about-split {
	display: flex;
	align-items: flex-start;
}

#about .about-inner .about-split .about-left {
	padding-right: 50px;
	flex: 1;
}

#about .coalition-blocks {
	margin: 15px 30px 15px 0;
}

#about .coalition-block {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
#about .coalition-block:after {
	content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: -15px;
  left: -15px;
  z-index: -1;
 	background: #5da9e9;
}
#about .coalition-block.block-2:after {
	top: auto;
	left: auto;
	bottom: -15px;
	right: -15px;
	background: #d8dda7;
}
#about .coalition-block-inner {
	background: #333a3e;
  padding: 20px 20px 45px 20px;
  color: #fcfcfc;
}

#about .coalition-blocks h3 {
	font-size: 25px;
}

#about .coalition-blocks p {
	font-size: 16px;
  line-height: 20px;
  color: #bbb;
}
#about .coalition-blocks .cta {
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: #fff;
	margin-bottom: 0;
}

/*#bg-gap {
	height: 25vh;
	background: rgba(10,10,10,.8);
}*/

@media screen and ( max-width: 991px ) {
	#about .about-inner {
		flex-direction: column;
		padding: 15px;
	}
	#about .about-inner .about-left,
	#about .about-inner .about-right {
		padding: 15px;
		width: 100%;
		flex: 1;
	}
	#about .coalition-blocks {
		margin-right: 0;
	}
	#about .about-inner .about-left .about-left-inner {
		padding: 0;
	}
	#about .about-inner .about-left .about-left-inner .about-left-content {
		padding: 20px;
	}
	#about .about-inner .about-left .about-left-inner .about-left-content h3 {
		font-size: 26px;
	}
	#about .about-inner .about-left .about-left-inner .about-left-content h3#about-tagline {
		font-size: 36px;
	}
	#subscribe {
		flex-direction: column;
	}
	#subscribe p {
		margin-bottom: 20px;
		text-align: center;
		padding-right: 0;
	}
	#subscribe .subscribe-text h2 {
		text-align: center;
	}
	#subscribe .subscribe-form {
		max-width: 100%;
	}
	#subscribe .at-row>[class^=at-], #jcpa-popup .jcpa-popup-form .at-row>[class^=at-] {
		min-width: 0;
	}
	#subscribe .at-markup.UpdateMyProfile, #jcpa-popup .jcpa-popup-form .at-markup.UpdateMyProfile {
		margin-bottom: 15px;
	}
	#subscribe .at .at-row.EmailAddress,
	#jcpa-popup .jcpa-popup-form .at .at-row.EmailAddress {
		margin-top: 0;
	}
}

@media screen and (max-width: 650px) {
	#home-top .right  {
		flex-direction: column;
		padding-top: 0;
	}
	#home-top .right ul {
		padding: 0;
	}

	#top-banner .swiper-container-topper .swiper-slide {
		padding: 30px;
		padding-top: 70px;
	}
	#top-banner .swiper-container-topper .swiper-slide .top-banner-text {
		padding: 10px;
	}
	#home-list ul {
		flex-wrap:  wrap;
		flex-direction: column;
	}
	#home-list ul li {
		width: 100%;
	}
	#home-list ul li a {
		border-bottom: solid 2px #ddd;
	}
	#home-list ul li:last-of-type a {
		border-bottom:  none;
	}
	#about .about-inner .about-split {
		flex-direction: column-reverse;
		flex-wrap: wrap;
	}
	#about .about-main, #about .about-left {
		padding: 15px;
		padding-top: 0;
	}
/*	#about .about-inner .about-split .about-right {
		width: 100%;
		margin-bottom: 20px;
	}*/
	#about .about-inner .about-split .about-left {
		padding-right: 30px;
		max-width: 100%;
	}
}


/* Home - approach */
#approach {
	padding: 50px 30px;
	background: #fff;
}
#approach h3 {
	text-align: center;
	font-size: 45px;
}
#approach .blocks {
	display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1400px;
  margin: 60px auto;
  margin-bottom: 10px;
  
  align-items: stretch;
}
#approach .blocks .block:nth-of-type(2) {
	border-left: none;
	border-right: none;
}
#approach .blocks .block {
	/*border: solid 5px #eee;*/
	width: 33.33%;
  text-align: center;
}
#approach .blocks .block .block-inner {
	padding: 20px 40px;
}
#approach .blocks .block .block-inner h4 {
	margin-bottom: 10px;
}
#approach .blocks .block .block-inner p {
	margin-bottom: 10px;
}
#approach .blocks .block .block-inner svg {
    width: 175px;
    height: 175px;
    margin-bottom: 20px;
    fill: #5d4d6a;
}

@media screen and (max-width:  991px) {
	#approach .blocks {
		flex-wrap: wrap;
	}
	#approach .blocks .block {
		width: 50%;
		margin-bottom: 20px;
	}
}
@media screen and (max-width:  600px) {
	#approach .blocks .block {
		width: 100%;

	}
}


#news-featured,
#pagination {
	border-top: solid 2px #aaa;
	padding: 50px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	background: #fff;
	/*background: rgba(10,10,10,.8);*/
	color: #222;
	padding-bottom: 120px;
	position: relative;
}
#header-search-results {
	background: #fff;
	color: #222;
}
#news-featured:after,
#pagination:after,
#header-search-results:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background:  url(/wp-content/themes/jcpa/images/eyes.svg);
	background-size: 10px;
	opacity: .04;
}
body.blog #news-featured,
body.archive #news-featured {
	padding-bottom: 90px;
	flex-direction: column;
}
#news-search {
	position: relative;
	z-index: 2;
	width: 100%;
  padding: 0 45px 20px 45px;
}
#pagination {
	padding-top: 0;
	border-top: none;
	    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 90px;
    position: relative;
    z-index: 2;
}
#pagination:after {
	z-index: -1;
}
#pagination ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 80px;
	max-width: 700px;
}
#pagination ul li {
	list-style-type: none;
	padding: 10px;
}
#news-featured .news {
	padding: 30px;
	text-align: center;
	position: relative;
	z-index: 2;
}
body.blog #news-featured.search-result-template,
body.archive #news-featured.search-result-template {
	padding-bottom: 100px;
}
#news-featured .news h2 {
	position: relative;
	display: inline-block;
	padding: 10px 15px;
	font-weight: normal;
	text-align: center;
	position: relative;
	margin-bottom: 30px;
	font-size: 40px;
}
#news-featured .news {
	padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.right .featured {
	max-width: 700px;
	width: 50%;
	padding: 30px;
}
#news-featured .news .content-cta {
  margin-top: 20px;
  margin-right: 0;
  background: #033f5f;
}
#news-featured .news .content-cta:hover {
	background: transparent;
}
.right .featured,
.swiper-container-topper  .swiper-slide {
  background: linear-gradient(135deg, #003f5f, #001d3d);
  color: #fff;

}





.right .featured {
	display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: stretch;
  align-items: stretch;
  position: relative;
  margin-right: 20px;
  left: -20px;
  padding: 0;
}
.right .featured .corners,
.image-outer .corners {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.right .featured .corners:before,
.right .featured .corners:after,
.right .featured:before,
.right .featured:after,
.image-outer .corners:before,
.image-outer .corners:after {
	content: '';
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  width: 50%;
  height: 50%;
  display: block;
  top: -15px;
  left: -15px;
  z-index: -1;
 	background: #74776b;
 	opacity: 0;
}
.right .featured:after {
	left: auto;
	top: auto;
	right: -10px;
	bottom: -10px;
	background: #74776b;
}
.right .featured .corners:before,
.right .featured .corners:after,
.image-outer .corners:before,
.image-outer .corners:after {
    background: #d8dda7;
    width: 50%;
    height: 50%;
    top: -12px;
    right: -12px;
    left: auto;
    bottom: auto;
    opacity: .8;
    background: transparent;
    border-top: solid 5px #74776B;
    border-right: solid 5px #74776b;
}
.right .featured .corners:after,
.image-outer .corners:after {
	top: auto;
	bottom: -12px;
	right: auto;
	left: -12px;
	background: #74776b;
	background: transparent;
    border-bottom: solid 5px #74776B;
    border-left: solid 5px #74776b;
    border-right: none;
    border-top: none;
}
.image-outer .corners:before {
	border-color: #d8dda7;
}
.image-outer .corners:after {
	border-color: #5da9e9;
}
/* News featured */
.swiper-container-topper  .swiper-slide .slide-inner {
	display: flex;
}
.swiper-container-topper  .swiper-slide .slide-inner h2 {
	margin-bottom: 10px;
	font-weight: normal;
	font-size: 30px;
}
.swiper-container-topper  .swiper-slide img {
	width: 100%;
	max-height: 200px;
	object-fit: cover;
	object-position: center;
}
.swiper-container-topper  .swiper-slide .slide-image.focus-top img {
	object-position: top;
}
.swiper-container-topper  .swiper-slide .slide-image.focus-bottom img {
	object-position: bottom;
}
.swiper-container-topper  .swiper-slide .slide-image {
	width: 100%;
}
.swiper-container-topper  .swiper-slide .slide-text {
	flex: 1;
	padding: 15px;
}



.entry-print a, .entry-video a {
	text-decoration: none;
	color: #222;
	transition: color 100ms linear;
}
.entry-print a:hover,.entry-video a:hover {
	color: #5da9e9;
}
.resource-entry-block {
	display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.resource-entry-block .resource-entry.entry-print h3,
.resource-entry-block .resource-entry.entry-video h3 {
	font-size: 20px;
	margin-top: 5px;
	line-height: 1.1em;
}
.resource-entry-block .resource-entry.press-entry {
	width: 50%;
	padding: 15px;
	text-align: left;
	margin-bottom: 20px;
	display: flex;
}
.resource-entry-block .resource-entry.press-entry .entry-inner {
	padding: 15px;
	background: #fff;
	border: solid 2px #003f5f;
	flex: 1;
}
.resource-entry-block .resource-entry.press-entry a {
	margin: 0;
}

.resource-entry-block .resource-entry.press-entry h3 {
	font-size: 20px;
  margin-top: 2px;
  line-height: 1.3em;
  margin-bottom: 3px;
}

.resource-entry-block .resource-entry.press-entry.entry-video {
	text-align: left;
	padding: 10px 0;
	display: block;
}

.resource-entry.press-entry .press-meta {
	margin-top: 2px;
}
.resource-entry.press-entry .press-meta .press-meta-item {
	font-weight: bold;
  color: #444;
  font-size: 15px;
}
.resource-entry.press-entry .press-meta .press-meta-item.people {
	position: relative;
	display: inline-block;
	padding-right: 10px;
	margin-right: 10px;
}
.resource-entry.press-entry .press-meta .press-meta-item.people:after {
	content: '';
  position: absolute;
  width: 15px;
  height: calc(100% - 9px);
  display: block;
  top: 6px;
  right: 0;
  border-right: solid 2px #999;
  /*transform: rotate(29deg);*/
}


@media screen and (max-width: 990px) {
	#news-featured {
		padding-left: 15px;
		padding-right: 15px;
	}
	.resource-entry-block .resource-entry.press-entry {
		width: 100%;
	}
}

@media screen and (max-width:  1100px) {
	#news-featured {
		flex-direction: column;
		/*padding: 30px;*/
	}
	#news-featured #news-search {
		padding: 0 15px 20px 15px;
	}
	#news-featured .news, .right .featured {
		max-width: 1400px;
		width: 100%;
		margin: 10px auto;
		left: 0;
	}
	#news-featured .news {
		padding: 0 0 30px 0;
	}
}


@media screen and (max-width:	991px) {
	#news-featured .news .content-cta {
		margin-right: 0;
	}
}

@media screen and (max-width:	660px) {
	#news-featured {
		/*padding: 30px 15px;*/
	}
	#news-featured .news {
		padding:  0 15px 30px 15px;
	}
	body.blog #news-featured .news,
	body.archive #news-featured .news {
		padding: 0 0 30px 0;
	}
	.swiper-container-topper .swiper-slide .slide-inner {
		flex-direction: column;
    justify-content: center;
	}
}


.grecaptcha-badge { opacity:0 !important; display: none !important; position: absolute !important; right: -999999vw !important;}
#subscribe #gdpr_text {
	order: 2;
}





body.page-template-template-evidence #resource-content .resource-entry-block {
	margin-top: 0;
}


.more-link-box {
	width: 100%;
}

.post-blocks {
	display: flex;
	flex-direction: column;
}
.post-block-wrap {
	padding: 15px;
}
#post-content.layouts .layout-blocks .post-blocks .post-block {
	background: #033f5f;
	max-width: 1275px;
	margin:  0 auto;
	display: flex;
	width: 100%; 
	position: relative;
  z-index: 2;
}
#post-content.layouts .layout-side_callout .text-callout,
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-toc {
	background: #033f5f;
	display: flex;
	position: relative;
  z-index: 2;
  width: 100%;
  padding: 15px;
}
#post-content.layouts .layout-side_callout .text-callout .cta.content-cta {
	margin-right: 15px;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-toc h5 {
	font-weight: normal;
	margin: 0 0 10px 0;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-toc ul {
	padding-left: 25px;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-toc ul li {
	margin-bottom: 10px;
	list-style-type: none;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-toc ul li:before {    
    font-family: "Font Awesome 5 Free";
    content: '\f178';
    margin:0 5px 0 -15px;
    color: #d8dda7;
    font-weight: bold;
    position: relative;
    left: 0;
    transition: color,left 100ms linear;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-toc ul li:hover:before {
	color: #5da9e9;
	left: -5px;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-toc {
	color: #fff;
	flex-direction: column;
}
.post-block-outer,
#post-content.layouts .layout-side_callout .text-callout-outer,
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-outer {
    position: relative;
    padding: 3px;
    margin-bottom: 30px;
    height: 100%;
    min-width: 200px;
}
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-outer {
	min-width: 100%;
}
.post-block .post-block-meta {
	    color: #ccc;
}
.post-block .text {
	padding:  30px 50px 15px 50px;
}
.post-block .text p {
	margin-bottom:  20px;
	font-size: 17px;
    line-height: 30px;
}
.post-block.media-block .text {
	width:  75%;
}
.post-block .media {
	width: 50%;
}
.post-block .media.portrait {
	flex: 1;
	
}
.post-block .media.portrait img {
	max-height: 350px;
  object-position: top;
}
.post-block .media img {
	width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-block h2 {
	margin-top: 0;
}

.post-block .cta.content-cta {
	align-self: flex-end;
  margin-right: 15px;
  margin-bottom: 15px;
  margin-top: 10px;
}

/* Search filter */
form.searchandfilter ul {
  padding: 0;
  display: flex;
  width: 60%;
  min-width: 300px;
}
body.archive .searchandfilter ul,
body.blog .searchandfilter ul {
	width: 100%;
}
body.archive .searchandfilter ul li,
body.blog .searchandfilter ul li {
	padding: 10px 15px 10px 0;
}
body.archive .searchandfilter ul li:last-of-type,
body.blog .searchandfilter ul li:last-of-type {
	padding-right: 0;
}
body.archive .searchandfilter ul select,
body.blog .searchandfilter ul select {
    width: 100%;
    min-height: 51px;
    padding: 10px 5px;
    font-size: 16px;
    border: solid 2px #777;
}
#search-results {
	width: 100%;
  min-height: 300px;
}

.post-block.media-block.media-right {
	flex-direction: row-reverse;
}

/*.post-blocks {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1275px;
    margin: 0 auto;
}
.post-blocks .post-block {
    width: 33.33%;
    margin-bottom: 0;
}*/
#post-content.resources .post-blocks .post-block .link-block {
	margin-bottom: 10px;
}
#post-content.resources .post-blocks .post-block .link-block a {
	text-decoration: none;
	font-size: 18px;
	margin-bottom: 20px;
	display: block;
}
#post-content.resources .post-blocks .post-block .link-block a:hover {
	color:  #1d8ccf;
}

@media screen and ( max-width: 900px ) {
/*	.post-blocks .post-block {
	    width: 50%;
	}*/
	.post-blocks .post-block:last-of-type {
		margin-bottom:  20px;
	}
}
@media screen and (max-width: 767px) {
	.post-block {
		flex-direction: column !important;
	}
	#post-content.resources .post-blocks .post-block {
		width: 100%;
	}
	.post-block .media, .post-block .text {
		width: 100% !important;
	}
	.post-block .text {
		padding: 30px;
	}
}
@media screen and ( max-width: 650px ) {
/*	.post-blocks .post-block {
	    width: 100%;
	    margin-bottom: 20px;
	}*/
	#post-content.resources .post-blocks .post-block {
		width: 100%;
	}

	.post-blocks {
		margin-left: -15px;
    margin-right: -15px;
	}
	#next-block .frame {
		padding: 40px 30px 50px 30px;
	}
}





/* JCPA layouts */
.layout-mega_list {
	max-width: 1400px;
	margin: 0 auto;
	padding: 15px 50px 15px 50px;
}
.layout-mega_list .list-item {
	display: flex;
}
.layout-mega_list .list-item .counter {
	font-size: 25px;
  background: #ccc;
  color: #222;
  border-radius: 50px;
  width: 50px;
  text-align: center;
  height: 50px;
  line-height: 45px;
  margin-right: 30px;
  position: relative;
  top: -4px;
  margin-bottom: 20px;
}

.layout-mega_list .list-item .content {
	flex: 1;
}
#post-content.layouts .layout-mega_list .list-item .content p {
	font-size: 20px;
    line-height: 35px;
    margin-bottom: 40px;
}
#post-content.layouts .layout-mega_list .list-item:last-of-type .content p {
	margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
	.layout-mega_list .list-item {
		position: relative;
		z-index: 1;
	}
	.layout-mega_list .list-item .counter {
		position: absolute;
    margin: 0;
    top: 1px;
    left: -3px;
    z-index: -1;
    opacity: 1;
    font-size: 20px;
    height: 35px;
    width: 35px;
    border-radius: 35px;
    line-height: 34px;
	}
	.layout-mega_list .list-item .content {
		text-indent: 45px;
	}
}
@media screen and (max-width: 850px) {
	.layout-mega_list {
		padding: 15px 30px;
	}
}

.layout-resource_list {
	padding: 30px 50px;
}
.layout-resource_list h3 {
	font-size: 40px;
	text-align: center;
}



/* Video patch */
#resource-content .resource-entry-block.resources-1 .resource-entry.entry-video {
	width: 100%;
}
body #resource-content .resource-entry-block.resource-count-odd .resource-entry.entry-report {
	width: 50%;
}
#resource-content .resource-entry-block.resource-count-odd .resource-entry:last-child {
	width: 100%;
}


.resource-entry-block .resource-entry a {
	display: flex;
	padding: 0;
	align-items: flex-start;
	margin-bottom: 30px;
	transition: transform 100ms linear;
}

.resource-entry-block .resource-entry a.brief {
	width: 100%;
  text-decoration: none;
  text-align: center;
  height: 100%;
  color: #333;
  align-items: center;

}
.resource-entry-block .resource-entry a.brief .link-inner {
	height: 100%;
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: stretch;
}
.resource-entry-block .resource-entry a img {
	border: solid 1px #eee;
	padding: 2px;
}
.resource-entry-block .resource-entry h3 {
	font-size: 35px;
	margin-top: 10px;
}
.resource-entry-block .resource-entry a.brief svg {
	width: 200px;
  fill: #555;
  margin-bottom: 15px;
  transition: fill 100ms linear;
}
.resource-entry-block .resource-entry a.brief:hover svg {
	fill:  #3382c5;
}
.resource-entry-block .resource-entry a.brief .svg-wrap {
    height: 60%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.resource-entry-block .resource-entry a.brief .title-wrap {
    height: 40%;
    width: 100%;
}
.resource-entry-block .resource-entry a.brief .title-wrap p {
	margin-top: 5px;
}

.resource-entry-block .resource-entry.press-entry .date,
#resource-content .resource-entry-block .resource-entry.press-entry p.date {
	font-size: 14px;
	margin-top: 5px;
	margin-bottom: 4px;
}

#next-block svg {
	width: 150px;
	height: 150px;
	margin: 20px;
	padding: 10px;
	background: transparent;
	border: solid 5px transparent;
	transition: all 100ms linear;
}

#next-block:after {
	border: solid 5px rgba(3,63,95,.97);
	transition: background 100ms linear !important;
}


header#site-header nav .menu-2024-menu-container ul li ul.sub-menu li a:before {
	height: 100%;
	background: transparent;
	transition: background 100ms linear;
}
header#site-header nav .menu-2024-menu-container ul li ul.sub-menu li a:hover:before {
	background: #5da9e9;
}


body.mobile-active header#site-header nav .menu-2024-menu-container ul li ul.sub-menu {
	display: none;
	text-align: center;
}



/* Menu 2.0 */
header#site-header nav ul.sub-menu li svg {
	width: 35px;
	height: 35px;
	fill: #fff;
	margin: 0;
  border-width: 2px;
  padding: 2px;
  border-color: transparent;
}
header#site-header nav ul.sub-menu li a:hover svg {
	border-color: #414e4a;
}

.mobile-back {
	display: none;
}

@media screen and (max-width:  1090px) {
	body.mobile-active header#site-header#site-header .site-title-wrap,
	body.mobile-active header#site-header.scrolled .site-title-wrap {
		margin: 15px 0 0 15px;
	  z-index: 11;
	}
	body.mobile-active header#site-header nav .menu-2024-menu-container {
		overflow: hidden;
		width: 100vw;
	}
	body.mobile-active header#site-header nav .menu-2024-menu-container > ul, 
	body.mobile-active header#site-header.scrolled nav .menu-2024-menu-container > ul {
		position: static;
	}
	body.mobile-active header#site-header nav .menu-2024-menu-container > ul, 
	body.mobile-active header#site-header.scrolled nav .menu-2024-menu-container > ul {
		padding-top: 80px;
		overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 80px;
	}
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu {
		display: block;
    min-height: unset;
    overflow: hidden;
    border: none;
    max-height: 0;
    display: none;
    /*max-height: 0;
    transform: scale(0);
    transition: max-height,transform 300ms linear;*/
	}

	body.about-subnav-active .mobile-back,
	body.work-subnav-active .mobile-back,
	body.news-subnav-active .mobile-back {
		display: block;
		opacity: 1;
    position: absolute;
    z-index: 100;
    color: #fff;
    right: 85px;
    top: 32px;
	}
	body.about-subnav-active header#site-header.scrolled .mobile-back,
	body.work-subnav-active header#site-header.scrolled .mobile-back,
	body.news-subnav-active header#site-header.scrolled .mobile-back {
		top: 23px;
	}

	body header#site-header#site-header nav .menu-2024-menu-container > ul > li {
		max-height: 200px;
		height: auto;
		transform: scale(1);
		transition: max-height,transform 300ms linear;
		overflow: hidden;
	}

	body header#site-header#site-header nav .menu-2024-menu-container > ul > li > a span {
		position: relative;
	}

	body.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li,
	body.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li,
	body.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li {
		max-height: 0;
		transform: scale(0);
	}
	body.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li:before,
	body.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li:before,
	body.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li:before,
	body.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li:after,
	body.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li:after,
	body.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li:after {
		display: none;
	}
	body.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav,
	body.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav,
	body.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav {
		max-height: 1000px;
		transform: scale(1);
	}
	body.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav ul.sub-menu,
	body.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav ul.sub-menu,
	body.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav ul.sub-menu {
		max-height: 1000px;
		display: block;
		transform: scale(1);
		max-width: 100%;
	}

	body header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav ul.sub-menu li a,
	body header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav ul.sub-menu li a,
	body header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav ul.sub-menu li a {
		transform: translateY(50px);
		opacity: 0;
		transition: transform,opacity 300ms linear;
		transition-delay: 100ms;
	}

	body.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav ul.sub-menu li a,
	body.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav ul.sub-menu li a,
	body.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav ul.sub-menu li a {
		transform: translateY(0);
		opacity: 1;
	}



	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li.divider {
		background: none;
		padding: 10px 15px;
		font-weight: bold;
	}

	header#site-header nav .menu-2024-menu-container ul li:nth-child(2) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(2) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(2) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(2) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(2) a {
		transition-delay: 150ms;
	}
	header#site-header nav .menu-2024-menu-container ul li:nth-child(3) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(3) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(3) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(3) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(3) a {
		transition-delay: 200ms;
	}
	header#site-header nav .menu-2024-menu-container ul li:nth-child(4) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(4) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(4) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(4) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(4) a {
		transition-delay: 250ms;
	}
	header#site-header nav .menu-2024-menu-container ul li:nth-child(5) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(5) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(5) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(5) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(5) a {
		transition-delay: 300ms;
	}
	header#site-header nav .menu-2024-menu-container ul li:nth-child(6) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(6) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(6) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(6) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(6) a {
		transition-delay: 350ms;
	}
	header#site-header nav .menu-2024-menu-container ul li:nth-child(7) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(7) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(7) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(7) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(7) a {
		transition-delay: 400ms;
	}
	header#site-header nav .menu-2024-menu-container ul li:nth-child(8) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(8) a,
	body header#site-header#site-header nav .menu-2024-menu-container ul.sub-menu li:nth-child(8) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(8) a,
	body header#site-header.scrolled nav .menu-2024-menu-container ul.sub-menu li:nth-child(8) a {
		transition-delay: 450ms;
	}
	header#site-header nav .menu-2024-menu-container ul li ul.sub-menu li.divider {
		transition-delay: 50ms;
	}
	body.mobile-active header#site-header nav .menu-2024-menu-container > ul > li > a {
		left: 0;
		text-align: center;
	}
	header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li {
		background: transparent;
		font-size: 16px;
		margin: 0;
	}
	header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li a {
		max-width: 100%;
		width: 100%;
    margin: 0 0 5px auto;
    text-align: center;
    background: transparent;
    white-space: initial;
    line-height: 1.2em;
	}
	header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li.has-description a {
		max-width: 80%;
		width: 80%;
	}
	header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li.has-description a span:first-child {
		border-bottom-color: #5da9e9;
		align-self: flex-start;
	}
	header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li.has-description a span {
		align-self: flex-start;
	}
	.mobile-nav-icon.close, .mobile-back {
		font-size: 30px;
		top: 32px;
	}
	header#site-header.scrolled .mobile-nav-icon.close, .mobile-back {
		top: 22px;
	}
	.top-ctas .search-toggle {
		position: absolute;
    right: 80px;
    font-size: 30px;
    top: 16px;
	}
	header#site-header.scrolled .top-ctas .search-toggle {
		top: 10px;
    padding-right: 0;
	}
	#header-news-search .sf-field-search input {
		padding-left: 15px;
	}
}
@media (max-width: 1090px) and (max-height:  690px) {
	
}






#post-content.layouts .layout-back {
	padding: 0 30px;
	text-align: center;
}
#post-content.layouts .layout-back a {
	display: inline-block;
  margin-bottom: 20px;
  padding: 10px 15px;
  color: #010024;
  text-decoration: none;
  line-height: 1.1em;
  font-size: 22px;
  font-weight: bold;
  margin: 10px 15px 15px 35px;
  background: transparent;
  padding-bottom: 5px;
  padding-left: 0;
  position: relative;
  z-index: 1;
  padding-right: 0;
  transition: all 100ms linear;
}
#post-content.layouts .layout-back a i {
  position: absolute;
  top: 33%;
  left: -30px;
  transition: left 100ms linear;
}
#post-content.layouts .layout-back a:hover i {
	left:  -35px;
}

#post-content.layouts .layout-back a:hover {
	color:  #5da9e9;
}

/* Password Protection */
#post-content.layouts .post-password-form p:nth-of-type(2) {
    display: flex;
}

#post-content.layouts .post-password-form p:nth-of-type(2) input[type="submit"] {
	background: #033f5f;
    color: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: normal;
    border-radius: 0;
    margin: 0;
}


/* Team  */
.image-grid {
	display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.image-grid .section-title-wrap {
	width: 100%;
	text-align: center;
}

.image-grid img {
	width: 300px;
	height: 300px;
	object-fit: contain;
	object-position: center;
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 5px;
}
body.page-template-template-team .image-grid a .img-wrap img,
body .layout-image_grid.fill-space .image-grid img {
	object-fit: cover;
	object-position: top center;
}
body .image-grid a .img-wrap {
	position: relative;
}
body #post-content.layouts .image-grid a .img-wrap h4 {
	position: absolute;
	bottom: 5px;
	left: 5px;
	min-height: 50px;
	width: calc(100% - 10px);
	padding: 10px 15px;
	margin: 0;
	
	color: #fff;
	line-height: 1.2em;
	font-weight: normal;
	text-align: center;
	z-index: 1;
	opacity: 1;
	vertical-align: middle;
	transition: min-height 100ms linear;
	z-index: 1;
}
body #post-content.layouts .image-grid a .img-wrap h4:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background: #003f5f;
	z-index: -1;
	transition: opacity 100ms linear;
}

body.page-template-default .layout-image_grid {
	max-width: 1400px;
	margin: 0 auto;
}

body.page-template-default .grid-item {
    padding: 15px;
}
body.page-template-default .grid-item a {
	display: block;
	transform: scale(1);
	transition: transform 100ms linear;
}
body.page-template-default .grid-item a:hover {
	transform: scale(1.02);
	transition: transform 100ms linear;
}


.image-grid .grid-item a {
	color: #222;
	text-decoration: none;
}
.image-grid .grid-item h3 {
	text-align: center;
	font-size: 25px;
	margin-bottom: 5px;
	margin-top: 5px;
	padding: 0 10px;

}
.image-grid .grid-item h5 {
	text-align: center;
	color: #555;
	font-size: 18px;
	margin: 5px 0 10px 0;
	padding: 0 10px;
}
body.page-template-template-team #resource-content h2 {
	display: inline-block;
	margin-bottom: 30px;
}
body.page-template-template-team #resource-content h2.has-subheading {
	margin-bottom: 5px;
}
body.page-template-template-team #resource-content .section-title-wrap h3 {
	margin-bottom: 30px;
	color: #444;
	font-size: 24px;
}

body.page-template-template-team .image-grid .grid-item {
	width: 25%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
}
body.page-template-template-team .image-grid .grid-item.no-image {
	justify-content: center;
	min-height: 200px;
}
body.page-template-template-team .image-grid a h3 {
	transition: color 100ms linear;
}
body.page-template-template-team .image-grid a:hover h3 {
	color: #5da9e9;
}
body.page-template-template-team .image-grid a .img-wrap {
	width: 275px;
	/*filter: grayscale(0);*/
	/**/
	transition: filter 100ms linear;
	cursor: pointer;
	position: relative;
	z-index: 1;
	margin: 0 auto;
}

body.page-template-template-team #resource-content .resource-right {
	padding-left: 0;
	padding-top: 50px;
	max-width: 1400px;
  margin: 0 auto;
}
body.page-template-template-team .image-grid a .img-wrap img {
	width: 100%;
	/*border: solid 3px #eee;*/
}
/*body.page-template-template-team .image-grid a .img-wrap:before,
body.single-jcpateam .text-outer .team-image:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: -1;
	background: rgba(50,50,50,.97);
	transition: background 100ms linear;
}*/
body.single-jcpateam .text-outer .team-image img {
	min-width: 275px;
}
/*body.page-template-template-team .image-grid a .img-wrap:before {
	height: 40px; 
}*/
/*body.page-template-template-team .image-grid a:hover .img-wrap:before {
	background: rgba(76,152,169,.94);
}*/

body.page-template-template-team .image-grid a:hover .img-wrap img {
	/*filter: grayscale(0);*/
	/*filter: grayscale(1);*/
}


/* Design Outline */
body.single-jcpateam .text-outer .team-image img {
	background: #efefef;
}
body.single-jcpateam .text-outer .team-image,
body.page-template-template-team .image-grid .grid-item .img-wrap {
	position: relative;
	margin-bottom: 10px;
	padding: 5px;
}
body.single-jcpateam .text-outer .team-image img,
body.page-template-template-team .image-grid .grid-item .img-wrap img {
	/*border: solid 2px #eee;*/
	padding: 0;
}
header#site-header nav .menu-2024-menu-container ul li, .menu-footer-menu-container ul li, 
.menu-social-menu-container ul li,
.post-block .cta.content-cta {
	position: relative;
}
header#site-header nav .menu-2024-menu-container ul li a {
	position: relative;
	z-index: 2;
}
body.single-jcpateam .text-outer .team-image:before,
body.page-template-template-team .image-grid .grid-item .img-wrap:before,
body.single-jcpateam .text-outer .team-image:after,
body.page-template-template-team .image-grid .grid-item .img-wrap:after,
header#site-header nav .menu-2024-menu-container > ul > li:after, .menu-footer-menu-container ul li:after, .menu-social-menu-container ul li:after,
header#site-header nav .menu-2024-menu-container > ul > li:before, .menu-footer-menu-container ul li:before, .menu-social-menu-container ul li:before,
.top-ctas .cta.top-cta:before,
.top-ctas .cta.top-cta:after,
.post-block-outer:before,
.post-block-outer:after,
.cta.content-cta:before,
.cta.content-cta:after,
body.mobile-active.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav > a span:before,
body.mobile-active.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav > a span:before,
body.mobile-active.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav > a span:before,
body.mobile-active.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav > a span:after,
body.mobile-active.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav > a span:after,
body.mobile-active.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav > a span:after,
body div.wpforms-container-full .wpforms-form button[type=submit]:before,
body div.wpforms-container-full .wpforms-form button[type=submit]:after,
#post-content.layouts .layout-side_callout .text-callout-outer:after,
#post-content.layouts .layout-side_callout .text-callout-outer:before,
#post-content.layouts .layout-sticky_nav .sticky-nav-left  .sticky-nav-outer:before,
#post-content.layouts .layout-sticky_nav .sticky-nav-left  .sticky-nav-outer:after,
body #post-content.layouts .image-grid a .img-wrap:before,
body #post-content.layouts .image-grid a .img-wrap:after {
	content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  display: block;
  top: -2px;
  right: -2px;
  z-index: -1;
  opacity: .8;
  background: transparent;
  border-top: solid 3px rgba(0,0,0,.0);
  border-right: solid 3px rgba(0,0,0,.0);
  transition: border-color 100ms linear;
}
body.single-jcpateam .text-outer .team-image:after,
body.page-template-template-team .image-grid .grid-item .img-wrap:after,
.top-ctas .cta.top-cta:after,
.cta.content-cta:after,
.post-block-outer:after,
#post-content.layouts .layout-side_callout .text-callout-outer:after,
body.mobile-active.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav > a span:after,
body.mobile-active.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav > a span:after,
body.mobile-active.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav > a span:after,
body div.wpforms-container-full .wpforms-form button[type=submit]:after,
body #post-content.layouts .image-grid a .img-wrap:after,
#post-content.layouts .layout-sticky_nav .sticky-nav-left  .sticky-nav-outer:after,
header#site-header nav .menu-2024-menu-container > ul > li:after, .menu-footer-menu-container ul li:after, .menu-social-menu-container ul li:after {
	top: auto;
	right: auto;
	bottom: -2px;
	left: -2px;
	border-top: none;
	border-right: none;
	border-left: solid 3px rgba(0,0,0,0);
	border-bottom: solid 3px rgba(0,0,0,0);
} 
header#site-header nav .menu-2024-menu-container > ul > li:before, .menu-footer-menu-container ul li:before, .menu-social-menu-container ul li:before {
	top: 1px;
	right: 0px;
	border-top: solid 2px rgba(0,0,0,.0);
  border-right: solid 2px rgba(0,0,0,.0);
	transition: border-color 100ms linear;
}
header#site-header nav .menu-2024-menu-container > ul > li:after, .menu-footer-menu-container ul li:after, .menu-social-menu-container ul li:after {
	bottom: 1px;
	left: 0px;
	border-left: solid 2px rgba(0,0,0,0);
	border-bottom: solid 2px rgba(0,0,0,0);
	transition: border-color 100ms linear;
}
header.scrolled nav .menu-2024-menu-container > ul > li:before {
	top: 4px;
}
header.scrolled nav .menu-2024-menu-container > ul > li:after {
	bottom: 6px;
}


@media screen and (max-width:  1090px ) {
	body.mobile-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav:before,
	body.mobile-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav:before,
	body.mobile-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav:before,
	body.mobile-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav:after,
	body.mobile-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav:after,
	body.mobile-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav:after {
		display: none;
	}
	body.mobile-active.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav > a span,
	body.mobile-active.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav > a span,
	body.mobile-active.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav > a span {
		padding: 15px;
    margin-bottom: 10px;
    display: inline-block;
	}
	body.mobile-active.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav > a span:before,
	body.mobile-active.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav > a span:before,
	body.mobile-active.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav > a span:before,
	body.mobile-active.about-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.about-subnav > a span:after,
	body.mobile-active.work-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.work-subnav > a span:after,
	body.mobile-active.news-subnav-active header#site-header#site-header nav .menu-2024-menu-container > ul > li.news-subnav > a span:after {
		border-color: #5da9e9;
	}
}

.post-block-outer:before, .post-block-outer:after,
#post-content.layouts .layout-side_callout .text-callout-outer:before,
#post-content.layouts .layout-side_callout .text-callout-outer:after,
#post-content.layouts .layout-sticky_nav .sticky-nav-left  .sticky-nav-outer:before,
#post-content.layouts .layout-sticky_nav .sticky-nav-left .sticky-nav-outer:after {
    border-color: #74776b;
    z-index: 0;
    border-width: 3px;
}

body.single-jcpateam .text-outer .team-image:after {
	bottom: -1px;
	left: -1px;
}
.cta.content-cta:hover {
	background: transparent;
}
header#site-header nav .menu-2024-menu-container ul li.take-action a {
	border: solid 2px #d8dda7;
	padding: 8px 15px;
}
a.cta.top-cta.cta-take-action:hover:before,
a.cta.top-cta.cta-take-action:hover:after {
	border-color: #5da9e9;
}
header#site-header nav .menu-2024-menu-container ul li.take-action:hover a {
	border-color: transparent;
}


body.page-template-template-team .image-grid .grid-item a:hover .img-wrap:before,
body.page-template-template-team .image-grid .grid-item a:hover .img-wrap:after,
.cta.content-cta:hover:before,
.cta.content-cta:hover:after,
body #post-content.layouts .image-grid a:hover .img-wrap:before,
body #post-content.layouts .image-grid a:hover .img-wrap:after,
header#site-header nav .menu-2024-menu-container ul li:hover:before, .menu-footer-menu-container ul li:hover:before, .menu-social-menu-container ul li:hover:before,
header#site-header nav .menu-2024-menu-container ul li:hover:after, .menu-footer-menu-container ul li:hover:after, .menu-social-menu-container ul li:hover:after {
	border-color: #5da9e9;
	z-index: 0;
	opacity: 1;
}
.cta.content-cta.color-orange:hover:before,
.cta.content-cta.color-orange:hover:after {
	border-color: #cb521e;
}
header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li {
	transition: background 100ms linear;
}
header#site-header nav .menu-2024-menu-container ul li.menu-item.menu-item-has-children > ul.sub-menu li:hover {
	background: #5da9e9;
}
header#site-header nav .menu-2024-menu-container ul li:hover:before, .menu-footer-menu-container ul li:hover:before, .menu-social-menu-container ul li:hover:before {
	top: 0;
	right: 0;
}
header.scrolled nav .menu-2024-menu-container ul li:hover:before {
	top: 5px;
}
header#site-header nav .menu-2024-menu-container ul li:hover:after, .menu-footer-menu-container ul li:hover:after, .menu-social-menu-container ul li:hover:after {
	bottom: 0;
	left: 0;
}
header.scrolled nav .menu-2024-menu-container ul li:hover:after {
	bottom: 8px;
}
body div.wpforms-container-full .wpforms-form button[type=submit]:hover:before,
body div.wpforms-container-full .wpforms-form button[type=submit]:hover:after,
.top-ctas .cta.top-cta:hover:before,
.top-ctas .cta.top-cta:hover:after {
	 border-color: #cb521e;
}
body div.wpforms-container-full .wpforms-form button[type=submit]:hover,
.cta.content-cta.more-cta:hover {
	color: #222;
	z-index: 2;
}
.top-ctas .cta.top-cta:hover {
	background: transparent;
}
/*header#site-header nav .menu-2024-menu-container ul li:hover:after, .menu-footer-menu-container ul li:hover:after, .menu-social-menu-container ul li:hover:after {
	width: 100%;
	height: 25px;
}*/
body.single-jcpateam .text-outer .team-image:before,
body.single-jcpateam .text-outer .team-image:after {
	opacity: 1;
	border-color: #74776b;
}





@media screen and (max-width: 1330px) {
	body.page-template-template-team .image-grid .grid-item {
		width: 33.33%;
	}
}
@media screen and (max-width: 850px) {
	body.page-template-template-team .image-grid .grid-item {
		width: 50%;
	}
}
@media screen and (max-width: 680px) {
	body.page-template-template-team .image-grid .grid-item {
		width: 100%;
	}
}

body.single-jcpateam .text-outer {
	display: flex;
  flex-direction: row;
  align-items: flex-end;
}
body.single-jcpateam #page-banner .text-outer h1 {
	margin-bottom: 2px;
	max-width: 100%;
	margin-top: 5px;
}
body.single-jcpateam .text-outer .team-text {
	flex: 1;
}
body.single-jcpateam .text-outer .team-text small,
body.single-jcpateam #next-block p.position,
body.single #page-banner .single-meta,
body.page #page-banner .single-meta {
  font-weight: bold;
  color: #d8dda7;
  font-size: 18px;
}
body.single.single-jcpateam #page-banner {
	padding-bottom: 5px;
}
a.team-social {
    color: #5da9e9;
    font-size: 20px;
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 2px;
    transition: color 100ms linear;
    cursor: pointer;
}
a.team-social:hover {
	color: #5da9e9;
}
body.single-jcpateam .text-outer .team-image {
	margin-bottom: -12%;
  max-width: 300px;
  margin-right: 30px;
  /*background: #414e4a;*/
  /*border: solid 3px #ddd;
  background: rgba(50,50,50,.97);*/
	position: relative;
	z-index: 1;
}
body.single-jcpateam .text-outer .team-image:before {
	/*opacity: .055;
	background-size: 175px;*/
}
body.single-jcpateam #post-content .layout-text:first-child {
	padding-left: 385px;
	padding-top: 0;
	margin-bottom: 50px;
}

@media screen and (max-width: 850px) {
	body.single-jcpateam .text-outer {
		flex-direction: column;
		align-items:  center;
		padding-right: 0;
	}
	body.single-jcpateam #post-content .layout-text,
	body.single-jcpateam #post-content .layout-text:first-child {
		padding-left: 30px;
	}
	body.single-jcpateam .text-outer .team-image {
		max-width: 250px;
		margin: 0 auto 10px auto;
	}
	body.single-jcpateam .text-outer .team-image img {
		min-width: 0;
	}
	body.single-jcpateam .text-outer .team-text {
		text-align: center;
		margin-top: 15px;
	}
	body.single-jcpateam #page-banner .text-outer h1 {
		font-size: 28px;
	}
	body.single-jcpateam .text-outer .team-image:after {
		bottom: -2px;
		left: -2px;
	}

	#post-content.layouts .layout-back {
		padding-top: 25px;
	}
}


body.page-template-template-press #resource-content .resource-entry-block {
	margin-top: 6px;
	justify-content: flex-start;
}
body.page-template-template-press #resource-content .resource-entry-block .resource-entry {
	padding-right: 25px;
	padding-top: 0;
  padding-bottom: 30px;
}
@media screen and (max-width: 860px) {
	body.page-template-template-resources #resource-content .resource-left,
	body.single-resource #resource-content .resource-left {
		display: none;
	}
	body.page-scrolled.page-template-template-resources #resource-content .resource-left,
	body.page-scrolled.single-resource #resource-content .resource-left {
		display: block;
	}
	body.page-template-template-press #resource-content .resource-left,
	body.page-template-template-evidence #resource-content .resource-left {
		position: relative;
    top: -30px;
    left: 0;
    width: calc(100% + 60px);
    margin-left: -30px;
    border-top: solid 2px #ddd;
	}
	body.page-scrolled.page-template-template-press #resource-content .resource-left,
	body.page-scrolled.page-template-template-evidence #resource-content .resource-left {
		position: fixed;
		top: 115px;
		width: 100%;
		margin-left: 0;
	}
}
@media screen and (max-width: 600px) {
	body.page-template-template-press #resource-content .resource-entry-block .resource-entry,
	body.page-template-template-evidence #resource-content .resource-entry-block .resource-entry {
		padding-right: 0;
	}
}



img.alignleft, img.alignright {
	padding: 10px;
}
img.alignleft {
	padding-left: 0;
}
img.alignright {
	padding-right: 0; 
}
@media screen and (max-width: 850px) {
	img.alignleft, img.alignright {
		padding: 10px 0;
	}
}



#post-content.layouts .layout-color_blocks .blocks {
	display: flex;
  flex-wrap: wrap;
  align-content: stretch;
}
#post-content.layouts .layout-color_blocks .blocks .grid-item {
	width: 25%;
	padding: 15px 15px 15px 0;
	flex: 1;
  display: flex;
}
#post-content.layouts .layout-color_blocks .blocks .grid-item .grid-item-inner {
	width: 100%;
	padding: 15px;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
}
#post-content.layouts .layout-color_blocks .blocks .grid-item .grid-item-inner p:last-of-type {
	margin-bottom: 0;
}

/* Popup */
#page-banner .button-list .cta, #jcpa-popup .jcpa-popup-inner .button-list .cta {
	margin-right: 50px;
	margin-bottom: 5px;
}

#jcpa-popup {
	display: none;
}
#jcpa-popup.show-popup {
	display: flex;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.8);
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 20;
}
#jcpa-popup .jcpa-popup-inner {
	display: flex;
	max-width: 550px;
	width: 90vw;
	position: relative;
	padding: 0;
	color: #fff;
	z-index: 2;
}
#jcpa-popup .jcpa-popup-inner.popup-image-landscape {
	flex-direction: column;
}
#jcpa-popup .jcpa-popup-inner:before {
	content:  '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #033f5f, #02273a);
  z-index: -2;
}
#jcpa-popup .jcpa-popup-inner:after {
	content:  '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #033f5f, #02273a);
  z-index: -1;
  opacity: .05;
  background-size: 275px;
}
.close-popup {
	position: absolute;
	top: 5px;
	right: 10px;
}
#jcpa-popup .jcpa-popup-inner.popup-image-landscape .close-popup {
	top: -40px;
  font-size: 27px;
  right: 5px;
}
#jcpa-popup .jcpa-popup-inner img {
	    width: 100%;
    height: 100%;
    object-fit: contain;
}
#jcpa-popup .jcpa-popup-inner .jcpa-popup-image {
	    flex: 1;
    min-width: 40%;
}
#jcpa-popup .jcpa-popup-text {
	padding: 15px 30px;
}
#jcpa-popup .jcpa-popup-text h2 {
	font-size: 30px;
	margin-top: 10px;
	margin-bottom: 10px;
}
#jcpa-popup .jcpa-popup-text p {
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 35px;
}
#jcpa-popup .jcpa-popup-text .jcpa-popup-description p {
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 35px;
}
#jcpa-popup .jcpa-popup-inner .cta.content-cta {
	color: #fff;
}
#jcpa-popup .jcpa-popup-inner .cta.content-cta:hover {
	color: #eee;
}
@media screen and (max-width:  530px) {
	#jcpa-popup .jcpa-popup-inner.popup-image-portrait {
		flex-direction: column;
	}
	#jcpa-popup .jcpa-popup-inner.popup-image-portrait .jcpa-popup-image {
		padding: 20px 25px;
    max-width: 90%;
	}
	#jcpa-popup .jcpa-popup-inner.popup-image-portrait .jcpa-popup-text {
		padding-top: 0;
	}
	#jcpa-popup .jcpa-popup-inner.popup-image-portrait .jcpa-popup-text h2 {
		margin-top: 0;
	}
}


@media screen and (max-width: 990px) {
	#post-content.layouts .layout-color_blocks .blocks .grid-item {
		width: 33.33%;
	}
}
@media screen and (max-width: 750px) {
	#post-content.layouts .layout-color_blocks .blocks .grid-item {
		width: 50%;
	}
}

@media screen and (max-width: 600px) {
	#post-content.layouts .layout-color_blocks .blocks .grid-item {
		width: 100%;
	}
}

/* Search & Filter */
body.blog .searchandfilter#search-filter-form-9042 li.sf-field-category select > option:first-child {
    display: none;
}
@media screen and (max-width: 990px) {
	body.blog .searchandfilter#search-filter-form-9042 ul li.sf-field-search,
	body.blog .searchandfilter#search-filter-form-10687 ul li.sf-field-search {
		flex: unset;
		width: 100%;
		padding-right: 0;
	}
	body.blog .searchandfilter#search-filter-form-9042 ul,
	body.blog .searchandfilter#search-filter-form-10687 ul {
		flex-wrap: wrap;
	}
	/* Change for category incl. */
	body.blog #search-filter-form-9042 ul li.sf-field-post-meta-search_date,
	body.blog .searchandfilter#search-filter-form-10687 ul li.sf-field-post-meta-search_date {
    padding-right: 0;
    width: 100%;
	}
	body.blog #search-filter-form-9042 ul li.sf-field-category,
	body.blog .searchandfilter#search-filter-form-10687 ul li.sf-field-category {
		width: 50%;
	}
	body.blog #search-filter-form-9042 ul li.sf-field-post-meta-search_date label,
	body.blog #search-filter-form-9042 ul li.sf-field-category label,
	body.blog .searchandfilter#search-filter-form-10687 ul li.sf-field-post-meta-search_date label,
	body.blog .searchandfilter#search-filter-form-10687 ul li.sf-field-category label {
		width: 100%;
	}
}