/*
Theme Name: Digital Ink Starter Theme 
Description: What's Your Story?
Version: 1.0
Author: Digital Ink
Author uri: https://www.dgtlnk.com
*/

:root {
	--black: #000000;
	--white: #ffffff;
	--blue: #3B6dae;
	--blue-dk: #242d3f;
	--blue-lt: #bcd4ee;
	--green: #008282;
	--yellow: #ffdf5a;
	--grey-lt: #d3d3d3;
	--orange-dk: #d93f07;
}

html {
	height: 100%;
}

html, html a {
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

body {
	background-color: var(--white);
  	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	height: 100%;
	color: #262626;
	margin: 0 auto !important;
}

.frame {
	max-width: 1440px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0 3px 6px #00000029;
}

a {
	color: #4670ac;
	text-decoration: none;
	font-weight: 600;
}

a:hover, a:focus {
	color: #4670ac;
	text-decoration: underline;
}

p {
	margin: 0 0 1.5rem;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 700;
	line-height: 1.1;
	color: var(--blue-dk);
	margin-bottom: 1rem;
}

h1, .h1 {
	font-size: 28px;
}

h2, .h2 {
	font-size: 32px;
}

h3, .h3 {
	font-size: 18px;
}

h4, .h4 {
	font-size: 22px;
}

h5, .h5 {
	font-size: 20px;
}

h6, .h6 {
	font-size: 18px;
}

ol, ul {
	padding-left: 20px;
	margin-bottom: 18px;
}

.sections > .section li, .sections > section li {
	margin-bottom: 1rem;
}

blockquote {
	position: relative;
}

/*
blockquote::before {
	content: '';
	mask: url('img/quotes.svg') center center/contain no-repeat;
	-webkit-mask: url('img/quotes.svg') center center/contain no-repeat;
	width: 38px;
	height: 30px;
	position: absolute;
	background-color: var(--teal);
}
*/

blockquote p:last-child {
	font-size: 15px;
	font-style: normal;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-top: -18px;
}

blockquote, blockquote p:only-child {
	font-weight: 400;
	font-size: 19px;
	font-style: italic;
	text-transform: none;
	margin-top: 0;
}

blockquote p:first-child::first-letter {
	margin-left: 48px;
}

/*Selection Styles*/

::selection {
  background: #3b6dae; /* WebKit/Blink Browsers */
  color: white;
}
::-moz-selection {
  background: #3b6dae; /* Gecko Browsers */
  color: white;
}

.bg-blue ::selection {
  background: white; /* WebKit/Blink Browsers */
  color: #3b6dae;
}
.bg-blue ::-moz-selection {
  background: white; /* Gecko Browsers */
  color: #3b6dae;
}

input::selection {
	background: #ffffff;
	color: #000000;
}

::placeholder {
  color: #000000 !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000000 !important;
   opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000000 !important;
   opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000000 !important;
   opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
  color: #000000 !important;
   opacity: 1;
}

/*Bootstrap Hacks*/
.dropdown-toggle::after {
	content: none;
}

.frame img {
	max-width: 100%;
    height: auto;
}

.btn, .btn:visited, button[type=submit], button[type=submit]:visited, .gform_button.button, .gform_button.button:visited, .btn-yellow, .btn-yellow:visited {
	display: block;
	max-width: 90%;
	margin: 0 auto;
    background: linear-gradient(90deg, #328281 0%, #4670AC 100%);
    color: var(--white);
    border-radius: 50px;
    cursor: pointer;
    white-space: normal;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border: none;
	min-width: 150px;
	position: relative;
	z-index: 1;
}

.btn-yellow, .btn-yellow:visited {
    background: linear-gradient(90deg, #FADC66 0%, #FD5 100%);
    color: #262E3E;	
}

.btn::before, .btn:visited::before, button[type=submit]::before, button[type=submit]:visited::before, .gform_button.button::before, .gform_button.button:visited::before, .btn-yellow::before, .btn-yellow:visited::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, #46B5B3 0%, #649BEA 100%);
    border-radius: 50px;
	z-index: -1;
	transition: opacity 0.5s linear;
	opacity: 0;
}

.btn-yellow::before, .btn-yellow:visited::before {
	background: linear-gradient(90deg, #FAF466 0%, #FD5 100%);	
}

.btn:hover, .btn:focus, button[type=submit]:hover , button[type=submit]:focus, .gform_button.button:hover, .gform_button.button:focus {
	color: var(--white);
}

.btn:hover::before, .btn:focus::before, button[type=submit]:hover::before , button[type=submit]:focus::before, .gform_button.button:hover::before, .gform_button.button:focus::before, .btn-yellow:hover::before, .btn-yellow:focus::before {
	opacity: 1;
}

a.btn:not([href]):not([tabindex]) {
	color: white;
}

/* Helper Classes */
.c-black { color: var(--black); }
.c-white { color: var(--white); }
.bg-black { background-color: var(--black); }
.bg-white { background-color: var(--white); }

.object-fit-cover { object-fit: cover;}
.object-fit-contain { object-fit: contain;}



/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
    -webkit-touch-callout: none;
    -khtml-user-select: text;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-slider ul.slick-dots {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	margin-bottom: 0;
    padding-left: 0;
    position: absolute;
    bottom: 50px;
}

.slick-slider ul.slick-dots li {
	padding: 0 5px;
}

.slick-slider ul.slick-dots > li:only-child {
	display: none;
}

.slick-slider ul.slick-dots li::marker {
	content: none;
}

.slick-slider ul.slick-dots li button {
	font-size: 0;
    line-height: 0;
    border: 0;
    outline: none;
    background: transparent;
	position: relative;
}

.slick-slider ul.slick-dots li button::before {
	content: '•';
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	text-align: center;
	background-color: var(--white);
	border-radius: 50%;
}

.slick-slider ul.slick-dots li.slick-active button::before {
	background-color: var(--orange);
}

.slick-slider a.slick-arrow {	
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
	cursor: pointer;
}

.slick-slider a.slick-arrow:hover .fa-square-full {	
	color: var(--orange);
}

.slick-slider a.slick-arrow.slick-prev {
	left: 0;
}

.slick-slider a.slick-arrow.slick-next {
	right: 0;
}

/*Menu*/

.dropdown-caret {
    position: absolute;
    top: 7px;
    right: 45px;
    cursor: pointer;
    color: white;
}

/*Header*/
.header {
	position: relative;
	z-index: 9999;
	border-bottom: 1px solid rgba(0,0,0,0.25);
}

header.sticky-header {
	position: fixed;
	width: 100%;
	max-width: 1440px;
	border-bottom: none;
	box-shadow: 0 3px 6px #00000029;
}

.header--alert-bar {
	background-color: var(--blue);
	height: auto;
	padding: 10px 0;
	visibility: visible;
	transition: height linear 0.3s, padding linear 0.3s;
}

.header--alert-bar, .header--alert-bar a {
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
}

header.sticky-header .header--alert-bar {
	height: 0;
	padding: 0;
	visibility: hidden;
}

.header--utility-menu {
	background-color: #f4f4f4;
	padding: 0;
	height: 0;
	visibility: visible;
	transition: height linear 0.3s, padding linear 0.3s;
}

header.sticky-header .header--utility-menu {
	height: 0;
	padding: 0;
	visibility: hidden;
}

.header--utility-menu form {
	display: none;
}

.header--utility-menu form input[type=search], .header--main__mobile form input[type=search] {
	border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
	padding-left: 25px;
	width: 100px;
	transition: width linear 0.5s;
}

.header--main__mobile form input[type=search] {
	width: 0;
}

.header--utility-menu form input[type=search]:focus, .header--main__mobile form input[type=search]:focus {
	background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 20px, #ffffff 20px, #ffffff 100%);
	width: 220px;
	padding-left: 30px;
	margin-left: 10px;
}

.header--main__mobile form input[type=search]:focus {
	padding: 5px;
    margin-left: 0;
    width: 85px;
    background: #f4f4f4;
}

.header--utility-menu form input[type=search]::placeholder, .header--utility-menu__nav--inner a, .header--main__mobile form input[type=search]::placeholder {
	font-size: 12px;
	font-weight: 500;
}

.header--utility-menu form button[type=submit], .header--main__mobile form button[type=submit] {
	background: transparent;
    padding: 0;
    min-width: auto;
    border: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5px;
	z-index: 1;
	outline: 0;
}

.header--utility-menu form button[type=submit]::before {
	content: none;
}

.header--main__mobile form button[type=submit] {
	-webkit-mask: url('img/search-icon.svg') center center/contain no-repeat;
	mask: url('img/search-icon.svg') center center/contain no-repeat;
	width: 18px;
	height: 18px;
	background-image: linear-gradient(180deg, #328281 0%, #4670AC 100%);
}

.header--main__mobile form input[type=search]:focus + button[type=submit] {
	display: none;
}

.header--utility-menu form input[type=search]:not(:focus) + button[type=submit], .header--main__mobile form input[type=search]:not(:focus) + button[type=submit] {
	pointer-events: none;
	cursor: pointer;
	left: 0;
}

.header--utility-menu__nav--inner {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.header--utility-menu__nav--inner > li {
	padding-left: 50px;
}

.header--utility-menu__nav--inner a {
	text-decoration: none;
	color: #262626;
}

.header--utility-menu__nav--inner a:hover {
	color: var(--blue);
}

.header--utility-menu__nav--inner > li > a {
	padding: 0;
}

.header--utility-menu__nav--inner a.dropdown-toggle.sub-menu-open > .dropdown-toggle-inner {
	transform: rotate(180deg);
}

.header--utility-menu__nav--inner .dropdown-menu {
	display: block;
    max-height: 0;
    overflow: hidden;
    transition: all linear 0.3s;
    margin-top: 0;
    border: 0;
    padding: 0;
    min-width: max-content;
	background-color: #f4f4f4;
}

.header--utility-menu__nav--inner a.dropdown-toggle.sub-menu-open + .dropdown-menu {
	max-height: 50vh;
	padding: 10px;
}

.header--main {
	background-color: var(--white);
	padding: 8px 0;
	position: relative;
}

.header--main__logo img {
	width: 95px;
}

.header--main__mobile--inner {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #fafafa;
	padding: 0;
	height: calc(100vh - 88px);
	max-height: 0;
	overflow: hidden;
	transition: all linear 0.3s;
}

.header.mobile-menu-open .header--main__mobile--inner {
	max-height: calc(100vh - 88px);
	overflow-y: scroll;
}

.header--main__nav--inner, .header--main__nav--mobile {
	padding: 0 30px;
	margin: 0;
	list-style: none;
}

.header--main__nav--mobile {
	padding: 0;
}

.header--main__nav--mobile > li {
	padding: 0 45px;
	border-bottom: 0.25px solid rgba(0,0,0,0.25);
}

.header--main__nav--mobile > li:first-child {
	border-top: 0.25px solid rgba(0,0,0,0.25);
}

.header--main__nav--inner a, .header--main__nav--mobile a {
	color: var(--blue-dk);
	font-size: 12px;
	line-height: 35px;
	font-weight: 500;
	text-decoration: none;
	padding: 0.5rem 0;
}

.header--main__nav--mobile a.dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-right: 20px;
	position: relative;
}

.header--main__nav--inner li > a:hover, .header--main__nav--mobile li > a:hover {
	color: var(--blue);
}

.header--main__nav--inner li.active > a, .header--main__nav--mobile li.active > a {
	font-weight: 700;
	color: var(--blue);
}

.header--main__nav--inner > li > a.dropdown-toggle > .dropdown-toggle-inner, .header--main__nav--mobile > li > a.dropdown-toggle > .dropdown-toggle-inner, .header--utility-menu__nav--inner > li > a.dropdown-toggle > .dropdown-toggle-inner {
	-webkit-mask: url('img/dropdown-arrow.svg') center center/contain no-repeat;
	mask: url('img/dropdown-arrow.svg') center center/contain no-repeat;
	border: none;
	margin-left: 15px;
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: var(--blue-dk);
	transition: all linear 0.3s;
}

.header--main__nav--inner a.dropdown-toggle.sub-menu-open > .dropdown-toggle-inner {
	transform: rotate(180deg);
}

.header--main__nav--inner .dropdown-menu {
	display: block;
    max-height: 0;
    overflow: hidden;
    transition: all linear 0.3s;
    margin-top: 0;
    border: 0;
    padding: 0;
    min-width: max-content;
	box-shadow: 0 3px 6px #00000029;
	top: calc(100% + 30px);
}

.header--main__nav--inner a.dropdown-toggle.sub-menu-open + .dropdown-menu {
	max-height: 50vh;
	padding: 30px 15px;
}

.header--main__nav--mobile > li > a.dropdown-toggle > .dropdown-toggle-inner {
	margin-left: 0;
	position: absolute;
	right: -20px;
}

.header--main__nav--mobile > li > a.dropdown-toggle + .dropdown-menu {
	position: static;
    display: block;
    border: 0;
    padding: 0 0 0 30px;
    float: none;
    width: 100%;
    height: auto;
	max-height: 0;
	overflow: hidden;
	transition: max-height linear 0.3s;
}

.header--main__nav--mobile > li > a.dropdown-toggle.sub-menu-open + .dropdown-menu {
	max-height: 100vh;
	transition: max-height linear 1s;
}

.header--main__nav--mobile > li > a.dropdown-toggle.sub-menu-open > .dropdown-toggle-inner {
	transform: rotate(180deg);
}

.header--main__donate a.btn {
	min-width: 120px;
}

.header--main__mobile button {
	background: transparent;
	border: 0;
	outline: 0;
}

.header--main__mobile button.header--main__mobile--toggle {
	padding: 10px;
    border: 0.5px solid #dadada;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-left: 25px;
}

.header--main__mobile--nav {
	background-color: var(--white);
}

.header--main__mobile--toggle__inner, .header--main__mobile--toggle__inner::before, .header--main__mobile--toggle__inner::after {
	width: 18px;
	height: 3px;
	border-radius: 3px;
	background-image: linear-gradient(180deg, #328281 0%, #4670AC 100%);
	display: block;
}

.header--main__mobile--toggle__inner {
	position: relative;
}

.header--main__mobile--toggle__inner::before, .header--main__mobile--toggle__inner::after {
	content: '';
	position: absolute;
	transition: all linear 0.3s;
}

.header--main__mobile--toggle__inner::before {
	top: -6px;
}

.header--main__mobile--toggle__inner::after {
	top: 6px;
}

.header.mobile-menu-open .header--main__mobile--toggle__inner {
	background: transparent;
}

.header.mobile-menu-open .header--main__mobile--toggle__inner::before {
	transform: rotate(45deg);
	top: 0;
}

.header.mobile-menu-open .header--main__mobile--toggle__inner::after {
	transform: rotate(-45deg);
	top: 0;
}

.header--main__mobile--footer {
	padding: 30px 30px 90px;
	background: #fafafa;
}

.header--main__mobile--footer__left {
	font-size: 10px;
}

.header--main__mobile--footer__left a {
	color: #4670AC;
	text-decoration: none;
}

.header--main__mobile--footer__bottom {
	margin-top: 30px;
	font-size: 10px;
}

.header--main__mobile--footer__bottom--left a {
	display: inline-block;
	margin-right: 20px;
	text-decoration: none;
}

.header--main__mobile--footer__bottom--left a .fa-stack-2x {
	color: #4374A4;
}

.header--main__mobile--footer__bottom--left a .fa-stack-1x {
	color: var(--white);
}

.header--main__mobile--footer__bottom--left a:hover .fa-stack-2x {
	color: var(--yellow);
}

.header--main__mobile--footer__bottom--right a {
	font-weight: 400;
	text-decoration: none;
}

/* Page Sticky Nav */
.page-sticky-nav {
	left: 10px;
	z-index: 999;
	max-width: 125px;
	position: fixed;
	top: 300px;
}

.page-sticky-nav--inner {
	margin: 0;
}

.page-sticky-nav--inner li {
	margin-bottom: 10px;
	line-height: 1.2;
}

.page-sticky-nav--inner a, .page-sticky-nav--inner li::marker {
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.25);
}

.page-sticky-nav--inner li.active a, .page-sticky-nav--inner li.active::marker {
	font-weight: 700;
	color: var(--white);
}

.page-sticky-nav--inner li.page-sticky-nav--dark a, .page-sticky-nav--inner li.page-sticky-nav--dark::marker {
	color: rgba(0, 0, 0, 0.25);
}

.page-sticky-nav--inner li.page-sticky-nav--dark.active a, .page-sticky-nav--inner li.page-sticky-nav--dark.active::marker {
	font-weight: 700;
	color: var(--blue-dk);
}

/*Hero*/
.hero-section {
	position: relative;
	margin-bottom: 80px;
	padding: 50px 0;
}

.hero-section::after {
	content: '';
	height: 125px;
	position: absolute;
	bottom: -115px;
	left: -15px;
	right: -15px;
	z-index: 1;
}

.home-hero {
	background-color: var(--blue-dk);
}

.page-hero {
	background-color: var(--blue);
}

.home-hero::after {
	background:  url('img/home-hero-blue-mobile.svg') left top/100% auto no-repeat, url('img/home-hero-green-mobile.svg') left 5%/100% auto no-repeat;
}

.page-hero::after {
	background:  url('img/page-hero-blue-mobile.svg') left top/100% auto no-repeat, url('img/page-hero-yellow-mobile.svg') left 5%/100% auto no-repeat;
}

.home-hero .home-hero--inner h1.slick-slide {
	color: rgba(255,255,255,0.10);
	font-size: 23px;
	line-height: 1.2;
	height: 90px;
	margin-bottom: 0;
	display: flex;
    justify-content: center;
    align-items: center;
	transition: all linear 0.3s;
}

.home-hero h1.slick-current + h1.slick-slide {
	color: var(--white);
	font-size: 28px;
}

.page-hero--inner {
	min-height: 250px;
}

.page-hero--tagline {
	color: rgba(255,255,255,0.5);
}

.page-hero h1 {
	color: var(--white);
}

.page-hero--content {
	color: var(--white);
}

.hero-scroll {
	margin-top: 50px;
}

.hero-scroll--mouse {
	width: 24px;
	height: 38px;
	border: 1.5px solid var(--white);
	border-radius: 20px;
	margin: 0 auto;
	position: relative;
}

.hero-scroll--mouse::before {
	content: '';
    width: 4px;
    height: 4px;
    background: var(--white);
    position: absolute;
    top: 7px;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
	animation-name: heroMouseDot;
	animation-duration: 3s;
	animation-iteration-count: infinite;
}

@keyframes heroMouseDot {
	0%   {top: 7px;}
	90%  {opacity: 0.75;}
	100% {top: calc(100% - 10px);opacity: 0;}
}

.hero-scroll--text {
	color: var(--white);
	font-size: 12px;
	font-weight: 300;
}

/* Section */
.sections > section.form-layout.bg-grey-lt:last-child, .sections > section.careers-culture.bg-blue:last-child, .sections > section.resources-carousel:last-child, .sections > section.half-image-half-content.bg-grey-lt:last-child {
	position: relative;
}

.sections > section.form-layout.bg-grey-lt:last-child::after, .sections > section.careers-culture.bg-blue:last-child::after, .sections > section.resources-carousel:last-child::after, .sections > section.half-image-half-content.bg-grey-lt:last-child::after {
	content: '';
    height: 125px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

.sections > section.form-layout.bg-grey-lt:last-child::after, .sections > section.half-image-half-content.bg-grey-lt:last-child::after {
    background: #fafafa;
}

.sections > section.careers-culture.bg-blue:last-child::after {
	background: #3B6DAE;
}

.sections > section.resources-carousel.bg-blue:last-child::after {
	background: var(--blue-dk);
}

/* Grid Rows */
.grid-rows {
	padding: 40px 0 60px;
}

.grid-rows > .container > .row.mb-5:last-child {
	margin-bottom: 0 !important;
}

/* Half Image Half Content */
.half-image-half-content {
	padding-top: 40px;
	padding-bottom: 60px;
}

.half-image-half-content--image__img {
	position: relative;
	margin-bottom: 30px;
}

.half-image-half-content--image__img::after {
	content: '';
	position: absolute;
	bottom: -15px;
	right: -15px;
	width: 42%;
	height: 42%;
}

.half-image-half-content--image__img.spiral-yellow::after {
	background: url('img/spiral-yellow.svg') center center/contain no-repeat;
}

.half-image-half-content--image__img.spiral-light-blue::after {
	background: url('img/spiral-light-blue.svg') center center/contain no-repeat;
}

.half-image-half-content--image__img img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
}

/* Resources Carousel */
.resources-carousel {
	background-color: var(--blue-dk);
	padding: 35px 0 75px;
	margin-top: 35px;
	position: relative;
}

.resources-carousel::after {
	content: '';
	background: url('img/spiral-green.svg') center center/contain no-repeat;
	position: absolute;
	top: -70px;
	left: -70px;
	width: 140px;
	height: 140px;
}

.resources-carousel--heading {
	margin-bottom: 20px;
}

.resources-carousel--title h2 {
	color: var(--white);
}

.resources-carousel--link a {
	color: var(--blue-lt);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.resources-carousel--link a:hover {
	color: var(--yellow);
}

.resources-carousel--items__single--image {
	aspect-ratio: 1/1;
	margin: 0 auto 50px;
	max-width: 222px;
	max-height: 222px;
}

.resources-carousel--items__single--image__inner {
	background-color: var(--blue-lt);
	width: 100%;
	height: 100%;
}

.resources-carousel--items__single:hover .resources-carousel--items__single--image {
	border-color: var(--yellow);
}

.resources-carousel--items__single:hover .resources-carousel--items__single--image__inner {
	background-color: var(--yellow);
}

.resources-carousel--items__single:hover .resources-carousel--items__single--title {
	color: var(--yellow);
	text-decoration: none;
}

.resources-carousel--items__single--title {
	font-size: 18px;
	font-weight: 700;
	color: var(--blue-lt);
}

.resources-carousel--items__single--excerpt {
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
}

.resources-carousel--items__single > a:hover {
	text-decoration: none;
}

.resources-carousel--items a.slick-nav {
	top: 111px;
}

.resources-carousel--nav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 100px;
}

.resources-carousel--nav a.slick-prev {
	order: 0;
}

.resources-carousel--nav a.slick-next {
	order: 2;
}

.resources-carousel--nav a {
	cursor: pointer;
}

.resources-carousel--nav a.slick-nav {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.25);
	border-radius: 50%;
	position: relative;
	z-index: 1;
}

.resources-carousel--nav a.slick-nav::before, .resources-carousel--items a.slick-nav::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 58px;
	height: 58px;
	background: linear-gradient(90deg, #328281 0%, #4670AC 100%);
	border-radius: 50%;
	z-index: -1;
	transition: opacity 0.5s linear;
	opacity: 0;
}

.resources-carousel--nav a.slick-nav:hover::before, .resources-carousel--items a.slick-nav:hover::before  {
	opacity: 1;
}

.resources-carousel--nav a.slick-nav path {
	stroke: rgba(255,255,255,0.25);
}

.resources-carousel--nav a.slick-nav:hover path {
	stroke: var(--white)
}

.resources-carousel--nav ul.slick-dots {
	order: 1;
	margin: 0 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0;
}

.resources-carousel--nav ul.slick-dots li button {
	background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--white);
}

.resources-carousel--nav ul.slick-dots li.slick-active button {
	font-weight: 700;
}

/* Featured News & Views */
.featured-news-views {
	padding: 35px 0 55px;
}

.featured-news-views--heading {
	margin-bottom: 35px;
}

.featured-news-views--link, .featured-news-views--link a {
	font-size: 16px;
	text-decoration: none;
	color: var(--blue-dk);
}

.featured-news-views--link:hover, .featured-news-views--link a:hover {
	text-decoration: underline;
}

.featured-news-views--posts .slick-list {
	padding: 0 25% 0 0;
}

.featured-news-views--posts .slick-track {
	display: flex;
}

.featured-news-views--posts .slick-track .featured-news-views--posts__single {
	flex: 0 0 auto;
	height: inherit;
}

.featured-news-views--posts .slick-track .featured-news-views--posts__single--inner {
	height: 100%;
}

.featured-news-views--posts__single:first-child {
	margin-bottom: 60px;
}

.featured-news-views--posts__single--inner {
	box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.20);
	border-radius: 10px;
}

.featured-news-views--posts__single--inner:hover {
	text-decoration: none;
}

.featured-news-views--posts__single--cat {
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	color: #565656;
}

.featured-news-views--posts__single--image img {
	border-radius: 10px;
	aspect-ratio: 1.6/1;
	object-fit: cover;
}

.featured-news-views--posts__single:first-child .featured-news-views--posts__single--image img {
	border-radius: 10px 0;
	aspect-ratio: 1.75/1;
	object-fit: cover;
}

.featured-news-views--posts__single:not(:first-child) .featured-news-views--posts__single--image img {
	margin-bottom: 20px;
}

.featured-news-views--posts__single--content {
	font-size: 14px;
	font-weight: 400;
	color: #262626;
	padding: 0 30px 30px;
}

.featured-news-views--posts__single--content::after {
	content: '\2022 \2022 \2022';
    display: block;
    font-size: 50px;
    line-height: 1;
    color: #a9a9a9;
    margin-top: 10px;
}

.featured-news-views--posts__single--date {
	font-size: 12px;
	color: var(--black);
}

.featured-news-views--posts__single--title {
	color: #328281;
}

.featured-news-views--posts__single--inner:hover .featured-news-views--posts__single--title {
	text-decoration: underline;
}

.featured-news-views--loading {
	position: relative;
    left: calc(50% - 23px);
}

.featured-news-views--loading::after {
	content: '';
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 5px solid var(--blue);
    border-color: var(--blue) transparent var(--blue) transparent;
    -webkit-animation: loading--ring 1.2s linear infinite;
    animation: loading--ring 1.2s linear infinite;
}

@-webkit-keyframes loading--ring {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes loading--ring {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

/* Careers & Culture */
.careers-culture {
	padding: 40px 0 0;
	position: relative;
}

.careers-culture.bg-blue {
	margin-top: 115px;
}

.careers-culture.bg-blue::after {
	content: '';
    background: url(img/spiral-yellow.svg) center center/contain no-repeat;
    position: absolute;
	top: -70px;
	right: -70px;
	width: 140px;
	height: 140px;
}

.careers-culture.bg-blue, .careers-culture.bg-blue .careers-culture--title h2, .careers-culture.bg-blue .careers-culture--single__title, .careers-culture.bg-blue .careers-culture--single__title a, .careers-culture.bg-blue .careers-culture--single__excerpt {
	color: var(--white);
}

.careers-culture--top .careers-culture--heading, .careers-culture--bottom:not(.careers-culture--all) .careers-culture--heading {
	border-bottom: 1px dotted rgba(0,0,0,0.5);
	margin-bottom: 40px;
	padding-bottom: 20px;	
}

.careers-culture.bg-blue .careers-culture--heading {
	border-bottom-color: rgba(255,255,255,0.5);
}

.careers-culture--link a, .careers-culture--content a {
	font-size: 16px;
	text-decoration: none;
}

.careers-culture.bg-blue .careers-culture--link a, .careers-culture.bg-blue .careers-culture--content a {
	color: var(--yellow);
}

.careers-culture.bg-blue .careers-culture--bottom.careers-culture--recent, .careers-culture.bg-blue .careers-culture--bottom.careers-culture--selected {
	background-color: rgba(36, 45, 63, 0.25);
}

.careers-culture.bg-blue .careers-culture--bottom.careers-culture--recent, .careers-culture.bg-blue .careers-culture--bottom.careers-culture--selected , .careers-culture--inner {
	margin-top: 30px;
}

.careers-culture--bottom.careers-culture--recent .slick-list, .careers-culture--bottom.careers-culture--selected .slick-list {
	padding: 0 25% 0 0;
}

.careers-culture--single__title, .careers-culture--single__title a {
	font-size: 18px;
	text-decoration: none;
}

.careers-culture--single__excerpt {
	font-size: 14px;
}

.careers-culture--single__link {
	color: #328281;
	font-size: 14px;
	text-decoration: none;
}

.careers-culture.bg-blue .careers-culture--single__link {
	color: var(--yellow);
}

.careers-culture--all .careers-culture--single__title {
	border-top: 0.25px solid var(--black);
	padding-top: 40px;
	margin-bottom: 40px;
}

.careers-culture.bg-blue .careers-culture--all .careers-culture--single__title {
	border-top: 0.25px solid var(--white);
	padding-top: 40px;
	margin-bottom: 40px;
}

.careers-culture--loading {
	position: relative;
    left: calc(50% - 23px);
}

.careers-culture--loading::after {
	content: '';
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 5px solid var(--yellow);
    border-color: var(--yellow) transparent var(--yellow) transparent;
    -webkit-animation: loading--ring 1.2s linear infinite;
    animation: cc-loading--ring 1.2s linear infinite;
}

@-webkit-keyframes cc-loading--ring {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes cc-loading--ring {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

 

/* Financials */
.financials {
	padding: 40px 0;
}

.financials--title {
	border-bottom: 1px dotted rgba(0,0,0,0.5);
	padding-bottom: 20px;
	margin-bottom: 55px;
}

.financials--downloads__title {
	font-size: 14px;
	margin: 25px 0 45px;
}

.financials--downloads__nav {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-flex;
	flex-wrap: wrap;
	border-bottom: 0.25px solid var(--black);
	margin-bottom: 25px;
}

.financials--downloads__nav--item {
	margin-bottom: 15px;
}

.financials--downloads__nav--item__link, .financials--downloads__nav--item__link:focus {
	border: 0;
	outline: 0;
	padding: 0;
	background: transparent;
	font-size: 12px;
	text-transform: uppercase;
}

.financials--downloads__nav--item__link.active {
	font-weight: 700;
	color: #4670AC;
}

.financials--downloads__nav--item:not(:last-child) .financials--downloads__nav--item__link {
	margin-right: 10px;
}

.financials--downloads__content--pane {
	opacity: 0;
	transition: opacity linear 0.5s;
}

.financials--downloads__content--pane.active {
	opacity: 1;
}

.financials--downloads__content--pane__inner {
	display: flex;
	flex-wrap: wrap;
}

.financials--downloads__content--pane__item:not(:last-child) {
	margin-right: 50px;
}

.financials--downloads__content--pane__item--title {
	font-size: 12px;
}

/* Team Members */
.team-members {
	padding: 35px 0;
}

.team-members--heading {
	border-bottom: 0.25px solid rgba(0,0,0,0.5);
	padding-bottom: 20px;
	margin-bottom: 55px;
}

.team-members--cats__nav {
	padding: 0;
	margin: 0;
	list-style: none;
}

.team-members--cats__nav--item {
	padding: 0 15px;
}

.team-members--cats__nav--item__link, .team-members--cats__nav--item__link:focus {
	border: 0;
	outline: 0;
	padding: 0;
	background: transparent;
	font-size: 12px;
	color: #262626;
}

.team-members--cats__nav--item__link.active {
	font-weight: 700;
}

.team-members--content__pane {
	opacity: 0;
	transition: opacity linear 0.5s;
}

.team-members--content__pane.active {
	opacity: 1;
}

.team-members--content__single > a, .team-members--content__single > a:hover {
	text-decoration: none;
}

.team-members--content__single--image img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
	max-width: 300px;
	max-height: 300px;
	margin: 0 auto 30px;
}

.team-members--content__single--title {
	color: #328281;
	font-size: 14px;
}

.team-members--content__single > a:hover .team-members--content__single--title {
	text-decoration: underline;
}

.team-members--content__single--position {
	font-size: 10px;
	font-weight: 400;
}

/* Blog */
.blog {
	padding: 65px 0;
}

.blog--title {
	border-bottom: 1px dotted rgba(0,0,0,0.5);
	margin-bottom: 40px;
	padding-bottom: 20px;	
}

.blog--posts__inner .slick-list {
	padding: 0 25% 0 0;
}

.blog--posts__single {
	margin-bottom: 50px;
}

.blog--posts__single--cat {
	font-size: 14px;
	color: #565656;
}

.blog--posts__single--image img {
	border-radius: 10px;
	aspect-ratio: 1.6/1;
	object-fit: cover;
}

.blog--posts > .blog--posts__single .blog--posts__single--image img {
	aspect-ratio: 1.75/1;
}

.blog--posts__single--content {
	font-size: 14px;
	color: #262626;
}

.blog--posts__inner .blog--posts__single--content {
	margin-top: -10px;
	padding: 30px 15px;
	box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.20);
	border-radius: 13px;
}

.blog--posts__inner .blog--posts__single--content::after {
	content: '\2022 \2022 \2022';
    display: block;
    font-size: 50px;
    line-height: 1;
    color: #a9a9a9;
    margin-top: 10px;
}

.blog--posts__single--date {
	font-size: 12px;
	color: var(--black);
}

.blog--posts__single--title, .blog--posts__single--title a {
	color: #328281;
	text-decoration: none;
	font-size: 16px;
}

/* Search Results */
.section-index {
	padding: 60px 0;
}

.search-results .blog--posts__single--content {
	margin-top: 20px;
	padding: 0;
	box-shadow: none;
	border-radius: 0;
}

.search-results .blog--posts__single--title a {
	font-size: 18px;
}

.next-prev-links .page-numbers.current {
	font-weight: 600;
	color: var(--blue);
}

.next-prev-links .page-numbers {
	display: inline-block;
	padding: 10px 5px;
	font-weight: 400;
    text-decoration: none;
}

/* Form */
.gform_wrapper.gravity-theme form .gfield_label {
	font-size: 14px;
	font-weight: 400;
}

.gform_wrapper.gravity-theme .gform_required_legend {
	font-size: 12px;
}

.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
	border: 1.5px solid #a4a4a4 !important;
	border-radius: 90px !important;
	color: #262626;
}

.gform_wrapper.gravity-theme select[multiple=multiple], .gform_wrapper.gravity-theme form textarea {
	border-radius: 20px !important;
}

.gform_wrapper .gform_body .ginput_container.ginput_container_select, .gform_wrapper .gform_body .ginput_container_address span.ginput_address_state, .gform_wrapper .gform_body .ginput_container_address span.ginput_address_country {
	position: relative;
}

.gform_wrapper .gform_body .ginput_container.ginput_container_select {
	background-image: linear-gradient(270deg, #ffffff 0%, #ffffff 49px, #a4a4a4 49px, #a4a4a4 50px, #ffffff 50px, #ffffff 100%);
	border-radius: 90px;
}

.gform_wrapper .gform_body .ginput_container.ginput_container_select select:not([multiple=multiple]), .gform_wrapper .gform_body .ginput_container_address span.ginput_address_state select, .gform_wrapper .gform_body .ginput_container_address span.ginput_address_country select {
	-webkit-appearance: none;
    appearance: none;
    padding-right: 50px !important;
	background: transparent;
}

.gform_wrapper .gform_body .ginput_container_address span.ginput_address_state select, .gform_wrapper .gform_body .ginput_container_address span.ginput_address_country select {
	background-image: linear-gradient(270deg, #ffffff 0%, #ffffff 49px, #a4a4a4 49px, #a4a4a4 50px, #ffffff 50px, #ffffff 100%);
}

.gform_wrapper .gform_body .ginput_container.ginput_container_select:not([multiple=multiple])::after, .gform_wrapper .gform_body .ginput_container_address span.ginput_address_state::after, .gform_wrapper .gform_body .ginput_container_address span.ginput_address_country::after {
    content: '';
    position: absolute;
    top: 17px;
    right: 25px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #6d6d6d;
    pointer-events: none;
}

.gform_wrapper .gform_footer {
	justify-content: flex-end;
}

.form-layout {
	padding: 40px 0;
}

.form-layout--right > div:not(:last-child) {
	margin-bottom: 30px;
}

.form-layout--right__location, .form-layout--right__phone, .form-layout--right__email {
	position: relative;
}

.form-layout--right__location::before, .form-layout--right__phone::before, .form-layout--right__email::before {
	content: '';
	background: url('img/location-marker.svg') center center/contain no-repeat;
	width: 40px;
	height: 55px;
	display: block;
	margin-bottom: 25px;
}

.form-layout--right__location::before {
	background: url('img/location-marker.svg') center center/contain no-repeat;
}

.form-layout--right__phone::before {
	background: url('img/phone-icon.svg') center center/contain no-repeat;
}

.form-layout--right__email::before {
	background: url('img/media-icon.svg') center center/contain no-repeat;
}

.form-layout--right__phone a {
	font-weight: 400;
	text-decoration: none;
}

/* Accordions */
.expanders {
	padding: 70px 0;
}

.expanders--menu {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--blue);
	max-height: 0;
	overflow: hidden;
	transition: max-height linear 0.3s;
	z-index: 1;
}

.expanders--menu.expanders--menu--visible {
	max-height: 100vh;
	overflow: visible;
}

.expanders--menu__inner {
	max-width: 100%;
	padding: 10px 15px;
	margin: 0 auto;
}

.expanders--menu__title--mobile {
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	display: block;
	cursor: pointer;
}

.expanders--menu__close {
	font-size: 30px;
    color: #262626;
    font-weight: 200;
    cursor: pointer;
    transform: rotate(45deg);
    width: 38px;
    height: 38px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #dadada;
    border-radius: 50%;
    position: absolute;
    top: -17px;
	display: none;
}

.expanders--menu__nav {
	padding: 0;
	margin: 0;
	list-style: none;
	display: none;
}

.expanders--menu__nav li {
	padding-top: 25px;
}

.expanders--menu__nav li a, .expanders--menu__nav li a:visited {
	text-decoration: none;
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
}

.expanders--menu__nav li a.active, .expanders--menu__nav li a.active:visited {
	font-weight: 700;
}

.expanders--section__title-desc {
	padding-top: 75px;
	padding-bottom: 35px;
	border-bottom: 0.5px solid rgba(60,60,60,0.2);
}

.expanders--section__single {
	border-bottom: 0.5px solid rgba(60,60,60,0.2);
	padding: 20px 0;
}

.expanders--section__single--title__link, .expanders--section__single--title__link:focus {
	cursor: pointer;
	border: 0;
	padding: 0;
	outline: 0;
	font-weight: 500;
	font-size: 24px;
	color: #328281;
	text-transform: none;
	background-color: transparent;
	width: 100%;
	text-align: left;
}

.expanders--section__single--open .expanders--section__single--title__link, .expanders--section__single--open .expanders--section__single--title__link:focus {
	color: var(--blue-dk);
}

.expanders--section__single--title__link:focus-visible {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}

.expanders--section__single--title__link--icon {
	cursor: pointer;
	display: block;
    color: #328281 ;
    text-decoration: none;
    font-weight: 100;
    font-size: 64px;
	background: transparent;
	transition: transform linear 0.3s;
	transform-origin: 20px 40px;
	width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.expanders--section__single--open .expanders--section__single--title__link--icon {
	transform: rotate(45deg);
}

.expanders--section__single--text {
	max-height: 25px;
    overflow: hidden;
	margin-right: 50px;
	margin-top: 5px;
    transition: max-height linear 0.5s, width linear 0s, margin linear 0.5s;
}

.expanders--section__single--open .expanders--section__single--text {
	max-height: 500vh;
}

/*Single Careers*/
.single-careers--section {
	padding-bottom: 100px;
}

.single-careers--apply-share {
	border-bottom: 0.25px solid rgba(0,0,0,0.5);
	padding: 10px 0;
	margin-bottom: 30px;
}

.single-careers--apply-share__apply:not(.btn) {
	font-size: 12px;
	font-weight: 500;
	color: #262626;
	text-decoration: none;
	margin: 0 15px;
}

.single-careers--apply-share__close, .single-careers--apply-share__close:hover {
	display: inline-block;
    color: #4670AC ;
    transform: rotate(45deg);
    text-decoration: none;
    font-weight: 300;
    font-size: 31px;
	background: #fff;
    border: 0.5px solid #dadada;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	position: absolute;
    bottom: -70px;
    right: 15px;
	z-index: 1;
}

.single-careers--title {
	margin-bottom: 45px;
}

.single-careers--content {
	margin-top: 50px;
}

/* Single Teams */
.single-teams--section {
	padding-bottom: 100px;
}

.single-teams--close, .single-teams--close:hover {
    color: #4670AC ;
    transform: rotate(45deg);
    text-decoration: none;
    font-weight: 300;
    font-size: 31px;
	background: #fff;
    border: 0.5px solid #dadada;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	margin-left: auto;
	margin-top: 20px;
}

.single-teams--image__position {
	font-size: 10px;
}

.single-teams--image__info > h1 {
	font-size: 26px;
}

.single-teams--info > h1 {
	line-height: 1.15;
}

.single-teams--info__position {
	font-size: 27px;
	margin: 25px 0;
}

.single-teams--image {
	margin-bottom: 30px;
}

.single-teams--image__img::after {
	content: '';
	position: absolute;
	bottom: -30px;
	right: 50%;
	width: 50%;
	height: 50%;
	background: url('img/spiral-light-blue.svg') center center/contain no-repeat;
}

.single-teams--image img {
	aspect-ratio: 1/1;
	max-width: 100%;
	object-fit: cover;
	border-radius: 50%;
}

/* Single Post */
.single-post--close, .single-post--close:hover {
    color: #4670AC ;
    transform: rotate(45deg);
    text-decoration: none;
    font-weight: 300;
    font-size: 31px;
	background: #fff;
    border: 0.5px solid #dadada;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	margin-left: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.single-post--image	{
	aspect-ratio: 1.75/1;
	object-fit: cover;
	border-radius: 10px;
}

.single-post--meta	{
	font-size: 12px;
}

/*Footer*/
.footer--newsletter {
	background-color: #4670AC;
	padding: 30px 0 0;
	position: relative;
	margin-top: 125px;
}

.footer--newsletter::before {
	content: '';
	background:  url('img/wave-blue-mobile.svg') left bottom/100% auto no-repeat, url('img/wave-yellow-mobile.svg') left 95%/100% auto no-repeat;
	height: 125px;
	position: absolute;
	top: -115px;
	left: -15px;
	right: -15px;
}

.footer--newsletter .gform_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer--newsletter .gform_wrapper.gform_wrapper.gravity-theme .gform_fields {
	grid-column-gap: 2% !important;
}

.footer--newsletter .gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
	-ms-grid-column-span: 6;
	grid-column: span 6;
}

.footer--newsletter .gform_wrapper.gravity-theme .gfield.gfield--width-quarter#field_submit {
	-ms-grid-column-span: 12;
	grid-column: span 12;
}

.footer--newsletter .gform_wrapper .gform_required_legend, .footer--newsletter .gform_wrapper .gform_anchor, .footer--newsletter .gform_wrapper .gform_validation_errors, .footer--newsletter .gform_wrapper #gf_form_focus {
	display: none;
}

.footer--newsletter .gform_wrapper .gform_title, .footer--newsletter .gform_wrapper .gfield_label, .footer--newsletter .gform_wrapper button[type=submit] {
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
}

.footer--newsletter .gform_wrapper.gravity-theme .gfield_required, .footer--newsletter .gform_confirmation_message {
	color: var(--white);
}

.footer--newsletter .gform_wrapper .gfield_label, .footer--newsletter .gform_wrapper button[type=submit] {
	font-size: 14px;
}

.footer--newsletter .gform_wrapper .gfield_validation_message {
	font-size: 12px !important;
	padding: 5px !important;
}

.footer--newsletter .gform_wrapper form {
	width: 100%;
}

.footer--newsletter .gform_wrapper .gform_heading {
	flex: 0 0 100%;
	max-width: 100%;
}

.footer--newsletter .gform_wrapper input:not([type=submit]) {
	border: none !important;
	outline: none;
	border-radius: 50px !important;
	height: 48px !important;
}

.footer--newsletter .gform_wrapper input::placeholder { 
	color: #d3d3d3 !important;
	opacity: 1;
}

.footer--newsletter .gform_wrapper button[type=submit] {
	border: 2px solid var(--white);
	outline: none;
	border-radius: 50px;
	background: transparent;
	padding: 10px 45px;
	height: 48px;
	align-self: flex-start !important;
	margin-left: 0;
}

.footer--newsletter .gform_wrapper button[type=submit]::before {
	content: none;
}

.footer--newsletter .gform_wrapper button[type=submit]:hover {
	background: var(--white);
	color: #4670AC;
}

.footer--main {
	background-color: var(--blue-dk);
	padding: 20px 0;	
}

.footer--main__left {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer--main__left--logo img {
	width: 95px;
}

.footer--main__left--socials a {
	font-size: 11.5px;
	display: inline-block;
	margin-right: 0;
}

.footer--main__left--socials a .fa-stack-2x {
	color: var(--blue-lt);
}

.footer--main__left--socials a .fa-stack-1x {
	color: var(--blue-dk);
}

.footer--main__left--socials a:hover .fa-stack-2x {
	color: var(--yellow);
}

.footer--main__right {
	margin-top: 30px;
}

.footer--main__right--nav__inner {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer--main__right--nav__inner a {
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	text-decoration: none;
	padding: 0;
}

.footer--main__right--nav__inner a:hover {
	color: var(--yellow);
}

.footer--main__right--nav__inner > li {
	background: rgba(70, 112, 172, 0.10);
	padding: 20px 15px;
	margin-bottom: 2px;
}

.footer--main__right--nav__inner > li > a::after {
	content: none;
}

.footer--main__right--nav__inner > li > a.dropdown-toggle {
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
	position: relative;
}

.footer--main__right--nav__inner > li > a.dropdown-toggle > .dropdown-toggle-inner {
	-webkit-mask: url('img/dropdown-arrow.svg') center center/contain no-repeat;
	mask: url('img/dropdown-arrow.svg') center center/contain no-repeat;
	border: none;
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: var(--white);
	transition: all linear 0.3s;
    position: absolute;
    right: -20px;
}

.footer--main__right--nav__inner .dropdown-menu {
	display: block;
	padding: 0 0 0 30px;
    margin: 0;
    background: transparent;
	position: static;
	float: none;
    border: none;
    min-width: auto;
	max-height: 0;
	overflow: hidden;
	transition: max-height linear 0.3s;
}

.footer--main__right--nav__inner > li > a.dropdown-toggle.sub-menu-open + .dropdown-menu {
	max-height: 100vh;
	transition: max-height linear 1s;
}

.footer--main__right--nav__inner > li > a.dropdown-toggle.sub-menu-open > .dropdown-toggle-inner {
	transform: rotate(180deg);
}

.footer--main__right--nav__inner .dropdown-menu > li {
	margin-top: 15px;
}

.footer--main__right--nav__inner .dropdown-menu a {
	font-size: 10px;
	font-weight: 300;
}

.footer--bottom {
	background-color: var(--blue-dk);
	padding: 20px 0;	
}

.footer--bottom__link, .footer--bottom__copy, .footer--bottom__content, .footer--bottom__nav, .footer--bottom__donate {
	flex: 0 0 50%;
	max-width: 50%;
	margin-bottom: 20px;
}

.footer--bottom__link, .footer--bottom__copy {
	border-top: 1px solid rgba(255,255,255,0.5);
	padding-top: 20px;
}

.footer--bottom__link, .footer--bottom__link a, .footer--bottom__copy, .footer--bottom__content, .footer--bottom__content a, .footer--bottom__nav--inner a {
	font-size: 11px;
	font-weight: 300;
	color: var(--white);
	text-decoration: none;
}

.footer--bottom__content, .footer--bottom__content a {
	color: var(--blue-lt);
}

.footer--bottom__link a, .footer--bottom__nav--inner a {
	font-weight: 500;
	padding: 0;
}

.footer--bottom__link a:hover, .footer--bottom__content a:hover, .footer--bottom__nav--inner a:hover {
	color: var(--yellow);
}

.footer--bottom__nav {
	display: none;
}

.footer--bottom__nav--inner {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.footer--bottom__nav--inner li {
	margin-left: 15px;
}

/* Sections */
.sections > section:not(.resources-carousel):not(.bg-grey-lt):not(.bg-blue) + section:not(.resources-carousel):not(.bg-grey-lt):not(.bg-blue) {
	padding-top: 0;
}

/*Responsive Embeds*/

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	margin: 20px 0;
} 

.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
	margin: 5px 20px 20px 0;
}
	
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
	
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 21px;
    margin: 0;
    padding: 10px;
}

#wpadminbar {
	position: fixed;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
    white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}


/*Media Queries*/
@media (min-width: 576px) {

	.btn, .btn:visited, button[type=submit], button[type=submit]:visited, .gform_button.button, .gform_button.button:visited, .btn-yellow, .btn-yellow:visited {
		display: inline-block;
		max-width: unset;
		margin: 0 auto;
	}

	.header--main {
		padding: 8px 25px;
	}

	.header--main__logo img {
		width: 125px;
	}

	.header--main__mobile form input[type=search]:focus {
		width: 220px;
	}

	.hero-section {
		padding: 100px 0;
	}

	.careers-culture--all .careers-culture--inner {
		margin-left: -30px;
		margin-right: -30px;
	}

	.careers-culture--heading {
		border-bottom: 1px dotted rgba(0,0,0,0.5);
		margin-bottom: 40px;
		padding-bottom: 20px;	
	}

	.careers-culture--all .careers-culture--single {
		padding-left: 30px;
		padding-right: 30px;
	}

	.careers-culture--single.col-sm-6:nth-child(even) {
		border-left: 1px solid #252525;
	}
	
	.careers-culture.bg-blue .careers-culture--single.col-sm-6:nth-child(even) {
		border-left: 1px solid var(--white);
	}

	.careers-culture--single__title {
		border: none !important;
		padding-top: 0 !important;
		margin-bottom: 1rem !important;
	}

	.financials--downloads__nav--item:not(:last-child) .financials--downloads__nav--item__link {
		margin-right: 30px;
	}

	.expanders--menu__inner {
		max-width: 540px;
	}
	
	.footer--newsletter {
		padding: 10px 25px 0 25px;
	}

	.footer--newsletter .gform_wrapper {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.footer--newsletter .gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
		-ms-grid-column-span: 6 !important;
		grid-column: span 6 !important;
	}

	.footer--main {
		padding: 20px 25px;	
	}

	.footer--main__left--logo img {
		width: 125px;
	}

	.footer--main__left--socials a {
		margin-right: 20px;
	}

	.footer--bottom {
		padding: 20px 25px;	
	}
}

@media (min-width: 601px) {
	
	.admin-bar .header.fixed-top {
		top: 32px;
	}
}

@media (min-width: 768px) {
	
	.align-center {
		text-align: center;
	}
	
	.hero-section {
		padding: 150px 0;
	}

	.home-hero::after {
		background:  url('img/home-hero-blue.svg') left top/100% auto no-repeat, url('img/home-hero-green.svg') left 5%/100% auto no-repeat;
	}

	.page-hero::after {
		background:  url('img/page-hero-blue.svg') left top/100% auto no-repeat, url('img/page-hero-yellow.svg') left 5%/100% auto no-repeat;
	}

	.resources-carousel::after {
		top: -100px;
		left: -100px;
		width: 200px;
		height: 200px;
	}

	.careers-culture.bg-blue::after {
		top: -100px;
		right: -100px;
		width: 200px;
		height: 200px;
	}

	.expanders--menu__inner {
		max-width: 720px;
	}

	.footer--newsletter::before {
		background:  url('img/wave-blue.svg') left bottom/100% auto no-repeat, url('img/wave-yellow.svg') left 95%/100% auto no-repeat;
	}

	.footer--newsletter .gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
		-ms-grid-column-span: 3 !important;
		grid-column: span 3 !important;
	}

	.footer--main__left--socials a .fa-stack-2x {
		color: var(--white);
	}

	.footer--main__right--nav__inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-evenly;
	}

	.footer--main__right--nav__inner a {
		font-size: 14px;
		font-weight: 700;
	}

	.footer--main__right--nav__inner > li {
		background: transparent;
		padding: 0;
		margin-bottom: 0;
	}

	.footer--main__right--nav__inner > li > a {
		margin-bottom: 30px;
	}

	.footer--main__right--nav__inner > li > a.dropdown-toggle > .dropdown-toggle-inner {
		display: none;
	}

	.footer--main__right--nav__inner .dropdown-menu {
		padding: 0;
		max-height: none;
	}

	.footer--main__right--nav__inner .dropdown-menu a {
		font-size: 12px;
	}

	.footer--bottom__content, .footer--bottom__content a {
		color: var(--white);
	}
		
}

@media (min-width: 992px) {
	body {
		font-size: 18px;
	}

	.alignright {
		float:right;
	    margin: 5px 0 20px 20px;
	}
	
	.alignleft {
		float: left;
	    margin: 5px 20px 20px 0;
	}
	
	a img.alignright {
		float: right;
	    margin: 5px 0 20px 20px;
	}
	
	a img.alignnone {
	    margin: 5px 20px 20px 0;
	}
	
	a img.alignleft {
		float: left;
	    margin: 5px 20px 20px 0;
	}
	
	.container {
		max-width: 73.125%;
	}

	h1, .h1 {
		font-size: 48px;
	}

	h2, .h2 {
		font-size: 48px;
	}

	h3, .h3 {
		font-size: 24px;
	}

	.header--utility-menu {
		padding: 10px 60px;
		height: auto;
	}

	.header--main {
		padding: 15px 60px;
	}

	.header--main__nav--inner, .header--main__nav--mobile {
		padding: 0;
	}

	.header--main__nav--inner a, .header--main__nav--mobile a {
		font-size: 12px;
		line-height: 1.5;
		padding: 0.5rem;
	}

	.header--main__nav--inner > li > a.dropdown-toggle > .dropdown-toggle-inner {
		margin-left: 5px;
	}

	.header--main__mobile--inner {
		height: 0;
	}

	.hero-section {
		margin-bottom: 125px;
		padding: 150px 0 50px;
	}

	.home-hero .home-hero--inner h1.slick-slide {
		font-size: 20px;
		height: 100px;
	}
	
	.home-hero h1.slick-current + h1.slick-slide {
		font-size: 48px;
	}

	.grid-rows {
		padding: 80px 0;
	}

	.half-image-half-content {
		padding-top: 135px;
		padding-bottom: 135px;
	}

	.half-image-half-content--inner {
		margin-left: -30px;
		margin-right: -30px;
	}

	.half-image-half-content--image, .half-image-half-content--content {
		padding-left: 30px;
		padding-right: 30px;
	}

	.half-image-half-content--image__img {
		margin-bottom: 0;
	}
	
	.half-image-half-content--image__img::after {
		bottom: -30px;
		left: -15px;
		right: auto;
	}

	.half-image-half-content--image.order-lg-1 .half-image-half-content--image__img::after {
		right: -15px;
		left: auto;
	}

	.resources-carousel::after {
		top: -182px;
		left: -182px;
		width: 364px;
		height: 364px;
	}
	
	.resources-carousel {
		padding: 145px 0 100px;
		margin-top: 80px;
	}

	.resources-carousel--heading {
		border-bottom: 1px dotted rgba(255,255,255,0.5);
		margin-bottom: 100px;
		padding-bottom: 20px;
	}

	.resources-carousel--items__single--title, .resources-carousel--items__single--excerpt {
		max-width: 245px;
		margin: 0 auto;
	}

	.featured-news-views {
		padding: 65px 0;
	}

	.featured-news-views--heading {
		border-bottom: 1px dotted rgba(0,0,0,0.5);
		margin-bottom: 40px;
		padding-bottom: 20px;	
	}

	.featured-news-views--posts {
		margin-left: -45px;
		margin-right: -45px;
	}

	.featured-news-views--posts__single {
		padding-left: 45px;
		padding-right: 45px;
	}

	.featured-news-views--posts .slick-list {
		padding: 0;
	}

	.featured-news-views--posts__single--inner {
		box-shadow: none;
		border-radius: 0;
	}

	.featured-news-views--posts__single--cat {
		font-size: 10px;
	}

	.featured-news-views--posts__single--image img {
		border-radius: 10px 0;
	}

	.featured-news-views--posts__single--content {
		padding: 0;
	}

	.featured-news-views--posts__single--content.col-lg-6 {
		padding: 0 15px;
	}

	.featured-news-views--posts__single--content::after {
		content: none;
	}

	.careers-culture {
		padding: 140px 0;
	}

	.careers-culture.bg-blue::after {
		top: -182px;
		left: -182px;
		right: auto;
		width: 364px;
		height: 364px;
	}

	.careers-culture--bottom.careers-culture--recent .slick-list, .careers-culture--bottom.careers-culture--selected .slick-list {
		padding: 0;
	}

	.careers-culture.bg-blue .careers-culture--bottom.careers-culture--recent, .careers-culture.bg-blue .careers-culture--bottom.careers-culture--selected {
		margin-top: 0;
		background-color: transparent;
	}

	.careers-culture--inner {
		margin-left: -30px;
		margin-right: -30px;
	}

	.careers-culture--single {
		padding-left: 30px;
		padding-right: 30px;
	}

	.careers-culture--single.col-sm-6:nth-child(even) {
		border-left: none;
	}
	
	.careers-culture.bg-blue .careers-culture--single.col-sm-6:nth-child(even) {
		border-left: none;
	}

	.careers-culture--single:nth-child(3n + 2) {
		border-left: 1px solid #252525 !important;
		border-right: 1px solid #252525 !important;
	}
	
	.careers-culture.bg-blue .careers-culture--single:nth-child(3n + 2) {
		border-left: 1px solid var(--white) !important;
		border-right: 1px solid var(--white) !important;
	}

	.careers-culture--single__title {
		border: none !important;
		padding-top: 0 !important;
		margin-bottom: 1rem !important;
	}

	.financials {
		padding: 135px 0;
	}

	.financials--downloads__nav--item__link, .financials--downloads__nav--item__link:focus {
		font-size: 14px;
	}

	.financials--downloads__nav--item__link.active {
		color: var(--black);
	}

	.financials--downloads__nav--item:not(:last-child) .financials--downloads__nav--item__link {
		margin-right: 50px;
	}

	.form-layout {
		padding: 115px 0;
	}

	.gform_wrapper.gravity-theme form .gfield_label {
		font-size: 18px;
	}

	.expanders--menu {
		position: static;
		background-color: transparent;
	}

	.expanders--menu__inner {
		max-width: unset;
		padding: 0;
	}

	.expanders--menu__nav li {
		padding: 15px;
	}

	.expanders--menu__nav li a, .expanders--menu__nav li a:visited {
		text-transform: uppercase;
		font-size: 24px;
		color: var(--black);
		font-weight: 400 !important;
	}
	
	.team-members {
		padding: 100px 0;
	}

	.team-members--heading {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.team-members--heading__inner {
		border-bottom: 1px dotted rgba(0,0,0,0.5);
		padding-bottom: 20px;
		margin-bottom: 55px;
	}

	.team-members--cats__nav--item__link, .team-members--cats__nav--item__link:focus {
		font-size: 24px;
	}

	.team-members--content__single--title {
		font-size: 18px;
	}
	
	.team-members--content__single--position {
		font-size: 12px;
	}

	.blog--posts__inner .slick-list {
		padding: 0;
	}

	.blog--posts__single--cat {
		font-size: 10px;
	}

	.blog--posts__single--image img {
		border-radius: 10px 0;
	}

	.blog--posts__inner .blog--posts__single--content, .search-results .blog--posts__single--content {
		margin-top: 20px;
		padding: 0;
		box-shadow: none;
		border-radius: 0;
	}

	.blog--posts__inner .blog--posts__single--content::after {
		content: none;
	}

	.blog--posts__single--title, .blog--posts__single--title a {
		font-size: 24px;
	}

	.blog--posts__inner .blog--posts__single--title, .blog--posts__inner .blog--posts__single--title a, .search-results .blog--posts__single--title, .search-results .blog--posts__single--title a {
		font-size: 18px;
	}

	.form-layout--inner {
		margin-left: -45px;
		margin-right: -45px;
	}

	.form-layout--inner .form-layout--left, .form-layout--inner .form-layout--right {
		padding-left: 45px;
		padding-right: 45px;
	}

	.form-layout--inner .form-layout--right {
		margin-top: 75px;
	}

	.form-layout--right > div:not(:last-child) {
		margin-bottom: 75px;
	}

	.single-careers--apply-share {
		border-bottom: none;
		padding: 0;
		margin-bottom: 0;
	}

	.single-careers--apply-share__close, .single-careers--apply-share__close:hover, .single-teams--close, .single-teams--close:hover, .single-post--close, .single-post--close:hover {
		font-weight: 100;
		font-size: 92px;
		color: #444444;
		background: transparent;
		border: none;
		width: auto;
		height: auto;
		display: inline-block;
		position: static;
	}

	.single-teams--close, .single-teams--close:hover, .single-post--close, .single-post--close:hover {
		margin-top: 0;
		margin-bottom: 0;
	}

	.single-teams--image {
		margin-top: 100px;
		margin-bottom: 0;
	}

	.single-teams--image__img::after {
		left: 50%;
		right: auto;
	}

	.single-teams--info {
		padding-left: 45px;
	}

	.single-post--image	{
		border-radius: 10px 0;
	}

	.footer--newsletter {
		padding: 0 60px 45px;
	}

	.footer--newsletter .gform_wrapper {
		flex-wrap: nowrap;
	}

	.footer--newsletter .gform_wrapper .gform_heading {
		flex: unset;
		max-width: unset;
	}

	.footer--newsletter .gform_wrapper .gform_title {
		font-size: 36px;
	}

	.footer--newsletter .gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
		-ms-grid-column-span: 3 !important;
		grid-column: span 3 !important;
	}

	.footer--main {
		padding: 80px 60px;	
	}

	.footer--main__left {
		display: block;
	}

	.footer--main__left--socials {
		margin-top: 50px;
	}

	.footer--main__left--socials a {
		margin-right: 0;
		font-size: 10px;
	}

	.footer--main__right {
		margin-top: 0;
	}

	.footer--bottom {
		padding: 35px 60px;	
	}
	
}

@media (min-width: 1200px) {

	.header--main__nav--inner, .header--main__nav--mobile {
		padding: 0 30px;
	}

	.header--main__nav--inner a, .header--main__nav--mobile a {
		font-size: 13px;
		padding: 0.5rem 1rem;
	}

	.header--main__nav--inner > li > a.dropdown-toggle > .dropdown-toggle-inner {
		margin-left: 15px;
	}
	.page-sticky-nav {
		left: 20px;
	}

	.footer--newsletter .gform_wrapper .gform_title {
		font-size: 42px;
	}

	.footer--main__left--socials a {
		font-size: 11.5px;
	}

	.footer--bottom {
		border-top: 1px dotted var(--white);
	}

	.footer--bottom__link, .footer--bottom__copy {
		border-top: none;
		padding-top: 0;
	}

	.footer--bottom__link, .footer--bottom__copy, .footer--bottom__content, .footer--bottom__nav, .footer--bottom__donate {
		flex: none;
		max-width: unset;
	}
}

@media (min-width: 1350px) {

	.header--main__nav--inner a, .header--main__nav--mobile a {
		font-size: 16px;
	}

	.footer--bottom__nav {
		display: block;
	}
}

@media (min-width: 1440px) {
	.page-sticky-nav {
		left: calc(50vw - 700px);
	}
}

@supports not (aspect-ratio: 1/1) {
	.half-image-half-content--image img {
		width: 475px;
		height: 475px;
	}

	.resources-carousel--items__single--image {
		height: 150px;
	}

	.team-members--content__single--image img {
		width: 200px;
		height: 200px;
	}

	.single-teams--image img {
		width: 270px;
		height: 270px;
	}
}

@supports not (aspect-ratio: 1.6/1) {
	.featured-news-views--posts__single--image img {
		max-height: 290px;
	}

	.blog--posts__single--image img {
		max-height: 290px;
	}
}

@supports not (aspect-ratio: 1.75/1) {
	.featured-news-views--posts__single:first-child .featured-news-views--posts__single--image img {
		max-height: 290px;
	}
	
	.blog--posts > .blog--posts__single .blog--posts__single--image img {
		max-height: 290px;
	}

	.single-post--image	{
		max-height: 290px;
	}
}