@charset "UTF-8";
/*!
Theme Name: planetary
Theme URI: http://underscores.me/
Author: BushwickDesign
Author URI: https://bushwickdesign.com
Description: Custom theme: planetary, developed by BushwickDesign
Version: 2.0.5
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: planetary
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

planetary is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
body {
  font-family: "Inter", sans-serif;
  color: #253242;
  font-weight: 300;
  overflow-x: hidden;
}

h1 {
  line-height: 1.125;
}

h1, h2, h3 {
  font-weight: 500;
}

h1 {
  font-size: 4em;
}

h2 {
  font-size: 2em;
}

p {
  margin-bottom: 10px;
  margin-top: 10px;
}

a {
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
  color: #13799B;
}
a:visited {
  color: #13799B;
}
a:hover, a:visited:hover {
  color: #52A3CD;
}

h5, .nav-links > div {
  margin: 2em 0 0;
  font-size: 1em;
  display: block;
}

b, strong {
  font-weight: 700;
}

button, .nav-links > div > a, input[type=submit], input[type=button], h5 a, .nav-links > div a, .button, .btn {
  border: 1px solid #253242;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #253242;
  padding: 8px 25px;
}
button:visited, input[type=submit]:visited, input[type=button]:visited, h5 a:visited, .nav-links > div a:visited, .button:visited, .btn:visited {
  color: #253242;
}
button::before, input[type=submit]::before, input[type=button]::before, h5 a::before, .nav-links > div a::before, .button::before, .btn::before {
  content: "";
  background-image: url("img/icon_transparent.png");
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 15px;
  display: block;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
}
button:hover, button:visited:hover, input[type=submit]:hover, input[type=submit]:visited:hover, input[type=button]:hover, input[type=button]:visited:hover, h5 a:hover, .nav-links > div a:hover, h5 a:visited:hover, .button:hover, .button:visited:hover, .btn:hover, .btn:visited:hover {
  color: #fff;
  background-color: #64B49C;
  border: 1px solid #64B49C;
}
button:hover::before, button:visited:hover::before, input[type=submit]:hover::before, input[type=submit]:visited:hover::before, input[type=button]:hover::before, input[type=button]:visited:hover::before, h5 a:hover::before, .nav-links > div a:hover::before, h5 a:visited:hover::before, .button:hover::before, .button:visited:hover::before, .btn:hover::before, .btn:visited:hover::before {
  transform: scale(1.15);
}

/* Background Themes */
.lblue, .lbluewave {
  background-color: #DCE3EB;
}

.ecru, .ecruwave {
  background-color: #EDF6F3;
}

.dblue, .dbluewave {
  background-color: #13799B;
}

.dblue + .container *, .dbluewave + .container * {
  color: #fff;
}
.dblue + .container h5 a, .dblue + .container .nav-links > div a, .dbluewave + .container h5 a, .dbluewave + .container .nav-links > div a {
  border: 1px solid #fff;
}
.dblue + .container h5 a::before, .dblue + .container .nav-links > div a::before, .dbluewave + .container h5 a::before, .dbluewave + .container .nav-links > div a::before {
  filter: brightness(100);
}

.lbluewave::before, .ecruwave::before, .whitewave::before, .dbluewave::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/lbluewave.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.lbluewave::before {
  opacity: 0.3;
}

.ecruwave::before {
  background-image: url("img/ecruwave.png");
}

.whitewave::before {
  background-image: url("img/whitewave.png");
}

.dbluewave::before {
  background-image: url("img/dbluewave.png");
  opacity: 0.31;
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 90%;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 80%;
  }
  .site-main {
    z-index: 6 !important;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 3em;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button, .nav-links > div > a,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button, .nav-links > div > a,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button, .nav-links > div > a,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button, .nav-links > div > a,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner, .nav-links > div > a::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring, .nav-links > div > a:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
.nav-links > div > a,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
.nav-links > div,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #4169e1;
}
a:visited {
  color: #800080;
}
a:hover, a:focus, a:active {
  color: #191970;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button, .nav-links > div > a,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover, .nav-links > div > a:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, .nav-links > div > a:active, button:focus, .nav-links > div > a:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.content-sidebar-wrap {
  display: flex;
  gap: 2rem;
}
.content-sidebar-wrap .main-content {
  flex: 1;
  min-width: 0;
}
.content-sidebar-wrap .sticky-sidebar {
  width: 300px;
  position: sticky;
  top: 2rem;
  align-self: flex-start;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget .widget-title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list li {
  margin-bottom: 1rem;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list li:last-child {
  margin-bottom: 0;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list li a.recent-post-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list li a.recent-post-link .recent-post-thumbnail {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list li a.recent-post-link .recent-post-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list li a.recent-post-link .recent-post-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list li a.recent-post-link .recent-post-title {
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list li a.recent-post-link .recent-post-date {
  font-size: 0.85em;
  color: #666;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget ul.recent-posts-list li a.recent-post-link:hover .recent-post-title {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .content-sidebar-wrap {
    flex-direction: column;
  }
  .content-sidebar-wrap .sticky-sidebar {
    width: 100%;
    position: static;
    top: auto;
  }
}
/* Sharing Section Styles
--------------------------------------------- */
.share-section {
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.share-section .share-trigger {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.share-section .share-trigger:hover {
  color: #0073aa;
}
.share-section .share-trigger i {
  font-size: 1.1em;
}
.share-section .share-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.share-section .share-links[hidden] {
  display: none;
}
.share-section .share-links .share-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.4em 0.8em;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  transition: opacity 0.2s ease;
}
.share-section .share-links .share-link i {
  font-size: 1.2em;
}
.share-section .share-links .share-link:hover {
  opacity: 0.85;
}
.share-section .share-links .share-link.facebook {
  background-color: #3b5998;
}
.share-section .share-links .share-link.twitter {
  background-color: #1da1f2;
}
.share-section .share-links .share-link.linkedin {
  background-color: #0077b5;
}
.share-section .share-links .share-link.email {
  background-color: #777;
}

.impact-and-benefits .benefit-content ul {
  list-style: none;
  padding-left: 0;
}
.impact-and-benefits .benefit-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.5em;
}
.impact-and-benefits .benefit-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation li {
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

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

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

.accordion-container .accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion-container .accordion-item {
  border: 1px solid #CFE3E2;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.accordion-container .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #CFE3E2;
}
.accordion-container .accordion-header:hover {
  background-color: rgba(207, 227, 226, 0.05);
}
.accordion-container .accordion-icon {
  transition: transform 0.3s ease;
  width: 1em;
  height: 1em;
  display: inline-block;
  position: relative;
  color: #CFE3E2;
  font-size: 1em;
  font-weight: lighter;
}
.accordion-container .accordion-icon::before, .accordion-container .accordion-icon::after {
  content: "";
  position: absolute;
  background-color: #CFE3E2;
  transition: transform 0.3s ease;
}
.accordion-container .accordion-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.accordion-container .accordion-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.accordion-container .accordion-header[aria-expanded=true] .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
}
.accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) {
  background-color: #CFE3E2;
}
.accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) .accordion-header .accordion-title,
.accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) .accordion-content .content-inner,
.accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) .accordion-content .content-inner * {
  color: #253242;
}
.accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) .accordion-icon {
  color: #253242;
}
.accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) .accordion-icon::before, .accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) .accordion-icon::after {
  background-color: #253242;
}
.accordion-container .accordion-content {
  padding: 0 1.5rem;
  background-color: transparent;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
}
.accordion-container .accordion-content .content-inner {
  padding: 1rem 0;
  color: #253242;
}
.accordion-container .accordion-content:not([hidden]) {
  max-height: 500px;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.accordion-container .accordion-header .accordion-icon {
  color: var(--wp--preset--color--primary);
  font-size: 1.5em;
  font-weight: lighter;
}
.accordion-container .accordion-header .accordion-icon::before, .accordion-container .accordion-header .accordion-icon::after {
  background-color: var(--wp--preset--color--primary);
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.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;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

html {
  font-size: 100%;
} /*16px*/
h1 {
  margin-top: 0;
  font-size: 3.052em;
}

h2 {
  font-size: 2.441em;
}

h3 {
  font-size: 1.953em;
}

h4 {
  font-size: 1.563em;
}

h5, .nav-links > div {
  font-size: 1.25em;
}

small, .text_small {
  font-size: 0.8em;
}

.relative {
  position: relative;
}
.relative > *:not(.absolute):not(.sticky):not(.fixed) {
  position: relative;
  z-index: 4;
}

.absolute, .fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.site-header.full-height {
  min-height: 100vh;
}

.background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: auto;
  padding-left: 2em;
  padding-right: 2em;
}
.container > h2:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  grid-gap: 50px;
}

.post, .page {
  margin: 0;
}

.panel {
  padding: 4em 0;
}

.panel ul, .panel ol {
  margin: 0;
}
.panel ul li:not(:last-child), .panel ol li:not(:last-child) {
  margin-bottom: 10px;
}

li h3 {
  margin: 0;
  font-size: 1.25em;
  font-weight: 700;
}

span[style*=font-weight], li[style*=font-weight] {
  font-weight: inherit !important;
}

.site-main .panel:last-child {
  padding-bottom: 4em;
}

.content-right figure {
  max-width: 480px;
  margin-top: 0;
  position: relative;
}
.content-right figure img {
  border-radius: 50%;
}

figure {
  position: relative;
}

figcaption {
  position: absolute;
  right: 0;
  bottom: -1em;
  background-color: #DCE3EB;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1024px) {
  .panel {
    padding: 2em 0;
  }
}
@media screen and (max-width: 600px) {
  .panel ul, .panel ol {
    padding-left: 1em;
  }
}
/* Site Header */
html.sr .load-hidden {
  visibility: hidden;
}

.site-header {
  min-height: 35em;
  display: flex;
  flex-direction: column;
}
.site-header .header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-header.full-height {
  min-height: 100vh;
}

.header-content, .header-content a {
  color: #fff;
}

.site-branding a, .site-branding img {
  display: block;
}

.site-branding img, .site-footer img {
  max-width: 270px;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
}
.site-branding img:hover, .site-footer img:hover {
  transform: scale(1.05);
}

.top-header {
  padding: 1.5em 0;
  position: fixed !important;
  z-index: 8 !important;
  top: 0;
  left: 0;
  width: 100%;
}

.main-navigation ul, .footer-navigation {
  justify-content: flex-end;
}
.main-navigation ul .fa::before, .footer-navigation .fa::before {
  color: #fff;
  display: flex;
}
.main-navigation ul li, .footer-navigation li {
  margin-left: 3em;
}
.main-navigation ul li.fa, .footer-navigation li.fa {
  position: relative;
  display: flex;
  align-items: center;
}
.main-navigation ul li.fa a, .footer-navigation li.fa a {
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-navigation ul li:not(.fa) a, .footer-navigation li:not(.fa) a {
  position: relative;
}
.main-navigation ul li:not(.fa) a:hover::after, .footer-navigation li:not(.fa) a:hover::after {
  opacity: 1;
}
.main-navigation ul li:not(.fa) a::after, .footer-navigation li:not(.fa) a::after {
  position: absolute;
  content: "";
  bottom: -7px;
  height: 3px;
  background-color: #fff;
  opacity: 0;
  width: 100%;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
  left: 0;
}
.main-navigation ul a, .main-navigation ul a:visited, .footer-navigation a, .footer-navigation a:visited {
  color: #fff;
  font-weight: 400;
}
.main-navigation ul a:hover, .main-navigation ul a:visited:hover, .footer-navigation a:hover, .footer-navigation a:visited:hover {
  color: #DCE3EB;
}

.overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: rgba(4, 4, 4, 0.49);
}

.lower-link {
  justify-content: flex-start;
  padding: 2em;
}
.lower-link img {
  width: 20px;
  height: 17px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-right: 20px;
}
.lower-link a, .lower-link a:visited {
  color: #fff;
  text-decoration: none;
  font-size: 1.25em;
}
.lower-link a:hover, .lower-link a:visited:hover {
  opacity: 0.6;
}

.header-content p {
  margin: 0 0 1em;
  font-size: 1.25em;
}
.header-content p:last-child {
  margin-bottom: 0;
}

.header-content h1 {
  margin: 0 0 25px;
}

.top-header, .top-header img {
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
}

.fade-in.top-header {
  background-color: rgba(37, 50, 66, 0.95);
  padding: 1em 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.fade-in.top-header img {
  max-width: 175px;
}

.sub-menu {
  flex-direction: column;
  padding-top: 21px;
  box-shadow: none !important;
}

.main-navigation ul.sub-menu li {
  margin-left: 0;
}
.main-navigation ul.sub-menu li a::after {
  display: none;
}
.main-navigation ul.sub-menu li a {
  padding: 5px 15px;
  background-color: rgba(37, 50, 66, 0.9);
  width: 225px;
}
.main-navigation ul.sub-menu li a:hover {
  background-color: rgba(19, 121, 155, 0.9);
}
.main-navigation ul.sub-menu li .sub-menu {
  margin-left: 225px;
  padding-top: 0;
}
.main-navigation ul.sub-menu li .sub-menu a {
  padding: 5px 15px;
  background-color: rgba(19, 121, 155, 0.9);
  width: 225px;
}
.main-navigation ul.sub-menu li .sub-menu a:hover {
  background-color: rgba(82, 163, 205, 0.9);
}

@media screen and (max-width: 1200px) {
  .main-navigation ul li, .footer-navigation li {
    margin-left: 2em;
  }
}
@media screen and (max-width: 768px) {
  .fade-in.top-header {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
  .header-content {
    padding-top: 75px;
    padding-bottom: 35px;
  }
  .main-navigation ul li {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .main-navigation ul.sub-menu li a {
    padding: 5px 15px;
    background-color: transparent;
    width: 100%;
  }
  .main-navigation ul.sub-menu li a:hover {
    background-color: transparent;
    color: #52A3CD;
  }
}
/* Panels */
.site-main {
  background-color: #fff;
  position: relative;
  z-index: 4;
}

/* Text with Image */
.text_with_slideshow img {
  max-height: 700px;
  border-radius: initial !important;
}

.featherlight-close-icon.featherlight-close::before {
  display: none;
}

.text_with_image img {
  cursor: zoom-in;
}

.values .container.header.flex {
  align-items: flex-start;
}

.header-inner {
  margin-right: 2em;
}

.text_with_image blockquote, .text_with_slideshow blockquote {
  margin: 0;
  padding: 1.5em;
  background-color: rgba(255, 255, 255, 0.89);
  border-radius: 50px;
  margin-left: -1.5em;
}
.text_with_image .image, .text_with_image .text, .text_with_slideshow .image, .text_with_slideshow .text {
  width: 50%;
}
.text_with_image .text > h2, .text_with_slideshow .text > h2 {
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 15px !important;
}
.text_with_image .text, .text_with_slideshow .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.text_with_image .flex, .text_with_slideshow .flex {
  align-items: stretch;
}
.text_with_image .image img, .text_with_slideshow .image img {
  display: block;
  min-height: 100%;
  min-width: 100%;
  object-fit: contain;
  border-radius: 75px;
}
.text_with_image .text p, .text_with_slideshow .text p {
  line-height: 1.66;
}
.text_with_image .alignment-right, .text_with_slideshow .alignment-right {
  flex-direction: row-reverse;
}
.text_with_image .alignment-left .image, .text_with_slideshow .alignment-left .image {
  margin-right: 2em;
}
.text_with_image .alignment-left .text, .text_with_slideshow .alignment-left .text {
  margin-left: 2em;
}
.text_with_image .alignment-right .image, .text_with_slideshow .alignment-right .image {
  margin-left: 2em;
}
.text_with_image .alignment-right .text, .text_with_slideshow .alignment-right .text {
  margin-right: 2em;
}

.text_with_image .header h2, .text_with_video .header h2, .text_with_slideshow .header h2 {
  margin: 15px auto;
}

.text_with_image blockquote h5:last-child, .text_with_image blockquote .nav-links > div:last-child, .text_with_slideshow blockquote h5:last-child, .text_with_slideshow blockquote .nav-links > div:last-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .panel.text_with_image .alignment-left .image, .panel.text_with_slideshow .alignment-left .image {
    margin-right: 0;
  }
  .panel.text_with_image .alignment-left .text, .panel.text_with_slideshow .alignment-left .text {
    margin-left: 0;
  }
  .panel.text_with_image .alignment-right .image, .panel.text_with_slideshow .alignment-right .image {
    margin-left: 0;
  }
  .panel.text_with_image .alignment-right .text, .panel.text_with_slideshow .alignment-right .text {
    margin-right: 0;
  }
}
/* Carousel */
.carousel .container {
  padding-top: 4vw;
  padding-bottom: 4vw;
}

.carousel .tns-ovh {
  padding-top: 2em;
  padding-bottom: 2em;
}

.carousel .tns-outer {
  position: relative;
}
.carousel .tns-outer::before, .carousel .tns-outer::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.carousel .tns-outer::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.carousel .tns-outer::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

div.carousel ~ div.standard_content .container > h2 {
  margin-top: 0;
}

.carousel .container > *:first-child {
  margin-top: 0;
}

.carousel .container > *:last-child {
  margin-bottom: 0;
}

.carousel .tns-nav {
  background-color: transparent;
}
.carousel .tns-nav button, .carousel .tns-nav .nav-links > div > a {
  background-color: #000;
  box-shadow: none;
}

.carousel img {
  display: block;
  margin: auto;
}

.carousel .tns-carousel {
  align-items: center;
  display: flex;
}

.carousel img {
  max-width: 175px;
  max-height: 75px;
  object-fit: contain;
}

@media screen and (max-width: 1166px) {
  .carousel img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
  }
}
/* Tiles */
.single-tile {
  background-color: #13799B;
  border-radius: 50px;
  position: relative;
  padding: 3em;
}
.single-tile:nth-child(3n+2) {
  background-color: #52A3CD;
}
.single-tile:nth-child(3n+3) {
  background-color: #8CBED4;
}
.single-tile .content {
  color: #fff;
}
.single-tile .content a, .single-tile .content a:visited {
  color: #fff;
}
.single-tile .content p:first-child {
  margin-top: 0;
}
.single-tile .content p:last-child {
  margin-bottom: 0;
}
.single-tile .number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #DCE3EB;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.tile-header.flex {
  justify-content: flex-start;
}

.tile-header .title {
  font-size: 2em;
  text-align: left;
  line-height: 1.125;
  margin-left: 15px;
  max-width: 170px;
}

.tile-icon {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tile-icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
  padding: 1em 2em;
}

.tiles.grid {
  margin: 3em 0 0;
}

.single-tile h3 {
  margin: 0 0 1em;
  font-size: 1.5em;
}

@media screen and (max-width: 1166px) {
  .single-tile {
    padding: 2em;
  }
  .single-tile .number {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 2fr);
  }
  .tile-header.flex {
    flex-direction: row;
  }
}
@media screen and (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .tile-header.flex {
    flex-direction: row;
  }
  .single-tile .number {
    width: 45px;
    height: 45px;
  }
  .single-tile .number {
    font-size: 22px;
  }
}
/* Footer */
.site-footer {
  position: relative;
  z-index: 4;
  background-color: #253242;
  padding: 1em 0 3em;
  margin-top: 60px;
}
.site-footer::before {
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background-size: 100% 100%;
  background-image: url("img/footer-top.png");
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 4;
}
.site-footer .fa-search {
  display: none !important;
}

.site-footer .container.flex {
  position: relative;
  z-index: 6;
  margin-top: 1.5em;
}

.container.copyright {
  margin-top: 175px;
  color: #DCE3EB;
  font-size: 0.75em;
}

#footer-menu {
  margin: 0;
  padding: 0;
  display: flex;
}
#footer-menu a {
  text-decoration: none;
}
#footer-menu a[href*=search] {
  display: none;
}

.menu-toggle {
  border: none !important;
}

.menu-toggle::before {
  display: none !important;
}

.menu-toggle:hover {
  background-color: transparent !important;
  border: none !important;
  opacity: 0.7;
}

@media screen and (max-width: 1600px) {
  .site-footer::before {
    top: -50px;
  }
  .site-footer {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .main-navigation ul.sub-menu li a {
    width: 175px;
  }
  .main-navigation ul.sub-menu li .sub-menu {
    margin-left: 175px;
  }
  .main-navigation ul.sub-menu li .sub-menu a {
    width: 175px;
  }
}
@media screen and (max-width: 900px) {
  .site-branding img, .site-footer img {
    max-width: 175px;
  }
  .main-navigation ul li, .footer-navigation li {
    margin-left: 2em;
  }
}
@media screen and (max-width: 768px) {
  .main-navigation.load-hidden {
    visibility: visible !important;
  }
  .nav-menu li {
    opacity: 1 !important;
  }
  .top-header {
    padding: 12.5px 0;
  }
  #site-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .top-header .menu-main-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(150%);
    transition: all linear 0.175s;
    -webkit-transition: all linear 0.175s;
    -moz-transition: all linear 0.175s;
    background-color: rgba(255, 255, 255, 0.94);
    padding: 1.5em;
    width: calc(100% - 30px);
    max-width: 280px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 6;
    height: 100%;
    text-align: right;
  }
  .top-header .menu-main-menu-container ul {
    text-align: left;
    width: 100%;
  }
  .top-header .menu-main-menu-container ul a {
    width: 100% !important;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .toggled .menu-main-menu-container {
    transform: translateX(0);
  }
  .menu-close-link {
    display: inline-block !important;
    width: 25px;
    height: 25px;
    background-image: url("./img/times.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main-navigation ul li {
    padding: 0;
    font-size: 1.5em;
    padding: 7.5px 0;
    margin-left: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
  }
  .main-navigation ul li::after {
    display: none !important;
  }
  .main-navigation a {
    text-transform: initial;
    letter-spacing: 1px;
  }
  .menu-toggle {
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  .menu-toggle img {
    width: 50px;
    height: 50px;
    filter: invert(1);
  }
  .main-navigation a, .main-navigation a:visited {
    color: #000;
    text-transform: uppercase;
    font-size: 0.75em;
    transition: all linear 0.175s;
    -webkit-transition: all linear 0.175s;
    -moz-transition: all linear 0.175s;
  }
  .main-navigation a:hover, .main-navigation a:visited:hover {
    color: #555;
  }
  .main-navigation a::after, .main-navigation a::before {
    display: none;
  }
  .site-branding {
    width: 100%;
  }
  .main-navigation ul a, .main-navigation ul a:visited {
    color: #000;
  }
  .main-navigation ul li {
    margin-left: 0;
  }
  #masthead {
    z-index: 6;
  }
  .main-navigation a {
    display: inline-block;
  }
  .main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: none;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .sub-menu {
    padding-top: 0 !important;
  }
  .main-navigation ul .sub-menu li {
    font-size: 1em;
  }
  .main-navigation ul ul a {
    padding: 0 15px !important;
  }
  .main-navigation ul .sub-menu li {
    padding: 0 !important;
    font-size: 0.85em;
  }
  .text_with_image .container, .text_with_slideshow .container {
    flex-direction: column-reverse;
  }
  .text_with_image .alignment-right .text, .text_with_slideshow .alignment-right .text {
    margin-right: 0;
  }
  .text_with_image .text, .text_with_slideshow .text {
    margin-bottom: 2em;
  }
  .text_with_image .image, .text_with_image .text, .text_with_slideshow .image, .text_with_slideshow .text {
    width: 100%;
  }
  .text_with_image blockquote, .text_with_slideshow blockquote {
    margin-left: 0;
  }
  .site-footer {
    z-index: 6;
    padding: 1em 0;
  }
  .main-navigation ul.sub-menu li .sub-menu {
    margin-left: 0;
    padding-top: 0;
    left: 0;
  }
  .main-navigation ul.sub-menu li .sub-menu a {
    background-color: transparent;
    margin-left: 20px;
  }
  .main-navigation ul.sub-menu li .sub-menu a:hover {
    background-color: transparent;
    color: #52A3CD;
  }
  .main-navigation ul .fa::before, .footer-navigation .fa::before {
    color: #000;
  }
  .menu-main-menu-container > ul > li > a {
    font-weight: 700;
  }
  .menu-main-menu-container {
    overflow-y: auto;
  }
  .site-footer::before {
    height: 50px;
  }
  #footer-menu {
    flex-direction: column;
  }
  .footer-navigation li {
    margin-left: 0;
    margin-top: 1em;
  }
  .footer-navigation li a::after {
    display: none;
  }
  .site-footer .container.flex {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
  }
  #footer-navigation {
    padding-top: 2em;
  }
}
@media screen and (max-width: 600px) {
  .menu-toggle img {
    width: 45px;
    height: 45px;
  }
  .site-footer .container.flex {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .footer-navigation li {
    margin-left: 0;
    margin-right: 2em;
    margin-top: 2em;
  }
}
@media screen and (max-width: 480px) {
  .menu-toggle img {
    width: 40px;
    height: 40px;
  }
  #footer-menu {
    flex-direction: column;
  }
  .footer-navigation li {
    margin-top: 10px;
  }
  .footer-navigation li:first-child {
    margin-top: 30px;
  }
}
/* Call to Action */
.call_to_action {
  color: #fff;
  display: flex;
  flex-direction: column;
}
.call_to_action a {
  color: #fff;
}
.call_to_action .container {
  min-height: 35em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.call_to_action .container.short {
  min-height: 20em;
}

.cta-overlay.absolute {
  z-index: 3;
  background-color: rgba(19, 121, 155, 0.79);
}

.cta-wave {
  background-image: url("img/cta_wave.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 4;
}

.bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 1024px) {
  .call_to_action h2 br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .call_to_action .container img {
    max-width: 175px;
  }
}
/* Values */
.values .header img {
  max-width: 90px;
}

.header-inner h2 {
  margin: 0;
}

.single-value {
  align-items: flex-start;
  margin-bottom: 40px;
}
.single-value .content p:first-child {
  margin-top: 0;
}
.single-value .content p:last-child {
  margin-bottom: 0;
}

.single-value .title {
  font-weight: 700;
  width: 25%;
  font-size: 1.125em;
}

.single-value .content {
  width: 75%;
}

.single-value:nth-child(5n+2) .title {
  color: #13799B;
}
.single-value:nth-child(5n+3) .title {
  color: #64B49C;
}
.single-value:nth-child(5n+4) .title {
  color: #E2A97D;
}
.single-value:nth-child(5n+5) .title {
  color: #52A3CD;
}

.values-list {
  margin: 2em 0;
}

@media screen and (max-width: 768px) {
  .values .header img {
    max-width: 50px;
  }
  .values .header-inner br {
    display: none;
  }
  .values .header-inner {
    margin-right: 3em;
  }
}
@media screen and (max-width: 600px) {
  .single-value {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .single-value .content {
    width: 100%;
  }
  .single-value .title {
    width: 100%;
    margin-bottom: 10px;
  }
  .values .header img {
    display: none;
  }
  .values .header-inner {
    margin-right: 0;
  }
}
/* Featured Posts */
.header-button-container {
  margin-bottom: 1em;
}
.header-button-container .header-content h2 {
  margin: 0;
}
.header-button-container .featured-posts-button {
  display: flex;
  align-items: center;
}

.posts-grid a {
  aspect-ratio: 1.5;
  display: flex;
  padding: 1.25em;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25em;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.posts-grid a:hover {
  filter: brightness(1.25);
}

.posts-grid.grid {
  margin: 4em 0 2em;
}

@media screen and (max-width: 768px) {
  .header-button-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-button-container .featured-posts-button {
    margin-top: 1em;
  }
}
/* Searching */
#searchform {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: 2em;
  background-color: rgba(37, 50, 66, 0.92);
  color: #fff;
  display: none;
}
#searchform .searchform-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#close-form {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 2.5em;
  padding: 0.5em 1em;
}
#close-form:hover {
  opacity: 0.6;
}

#searchform #search {
  font-size: 2em;
  padding: 0.5em;
  padding-right: 3em;
}

#searchform .fas.fa-search {
  font-size: 2.5em;
  margin-left: -1.675em;
  color: #52A3CD;
  cursor: pointer;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#searchform .fas.fa-search:hover {
  color: #8CBED4;
}

.error-404 .fab, .error-404 .fas {
  display: none;
}

#searchform form {
  max-width: 90%;
  width: 768px;
}

.news-search {
  margin: 0 1em;
  padding: 2em 0 0;
}

#searchform input {
  max-width: 100%;
  width: 100%;
}

.error-404 .menu-close-link, .site-footer .menu-close-link {
  display: none !important;
}

.search article .entry-summary {
  margin-top: 0;
  padding-top: 1em;
  padding-bottom: 1em;
}

.search-excerpt h1, .search-excerpt h2 {
  display: none;
}

.search-excerpt * {
  font-size: 1em !important;
  font-weight: initial;
}

.search-excerpt > *:last-child {
  margin-bottom: 0;
}

.nav-links {
  margin-top: 3em;
}

.no-results.not-found {
  margin: 4em auto 6em;
}

.search-form {
  margin: 2em 0;
}

@media screen and (max-width: 600px) {
  #searchform #search {
    font-size: 1.5em;
  }
  #searchform .fas.fa-search {
    font-size: 2em;
  }
  .blog-individual-post .info {
    flex: 1;
    width: 100%;
  }
}
/* Anchor Links */
.anchor-links {
  background-color: #EDF6F3;
  padding: 1.5em;
  z-index: 4;
  position: relative;
}
.anchor-links .flex {
  justify-content: space-around;
}
.anchor-links .flex a, .anchor-links .flex a:visited {
  font-weight: 700;
  color: #253242;
  text-decoration: none;
  text-align: center;
  flex: 1;
  padding: 0 10px;
  font-size: 0.85em;
}
.anchor-links .flex a:hover, .anchor-links .flex a:visited:hover {
  color: #52A3CD;
}

@media screen and (max-width: 768px) {
  .anchor-links .flex {
    flex-direction: column;
  }
  .anchor-links .flex a {
    font-size: 1em;
    text-decoration: underline;
  }
}
/* Two Column Content and Diagrams */
.two_column_content .flex, .two_column_diagram .flex {
  align-items: stretch;
}
.two_column_content .flex > *, .two_column_diagram .flex > * {
  width: 50%;
}

.two_column_content img, .single-post .site-main img {
  cursor: zoom-in;
}

.single-post .badges.tags {
  margin-bottom: 2em;
}
.single-post .badges.tags .tag {
  text-decoration: none;
}
.single-post .badges.tags .tag:hover {
  opacity: 0.8;
}

.badges.tags.flex {
  flex-wrap: wrap;
}

.two_column_content .header {
  margin-bottom: 2em;
}

.site-main .content-left {
  padding-right: 2em;
}
.site-main .content-left blockquote {
  background-color: rgba(82, 163, 205, 0.9);
  border-radius: 25px;
  padding: 1em;
  color: #253242 !important;
  height: 100%;
  margin: 0;
}
.site-main .content-left blockquote * {
  color: #253242 !important;
}

.site-main .content-right {
  padding-left: 2em;
}
.site-main .content-right blockquote {
  background-color: rgba(140, 190, 212, 0.9);
  border-radius: 25px;
  padding: 1em;
  color: #253242;
  height: 100%;
  margin: 0;
}
.site-main .content-right blockquote * {
  color: #253242;
}

.site-main .content-left h3:first-child, .site-main .content-right h3:first-child {
  margin-top: 0;
}
.site-main .content-left p:first-child, .site-main .content-right p:first-child {
  margin-top: 0;
}
.site-main .content-left p:last-child, .site-main .content-right p:last-child {
  margin-bottom: 0;
}

.diagram-area-wrapper {
  padding: 2em 0;
}
.diagram-area-wrapper img {
  cursor: zoom-in;
}

@media screen and (max-width: 768px) {
  .two_column_content .flex, .two_column_diagram .flex {
    flex-direction: column;
  }
  .two_column_content .flex > *, .two_column_diagram .flex > * {
    width: 100%;
  }
  .site-main .content-left {
    padding-right: 0;
    padding-bottom: 1.5em;
  }
  .site-main .content-right {
    padding-left: 0;
  }
}
/* Image Block */
.panel.image img, .panel.two_column_diagram .diagram-area-inner img {
  max-width: 1024px;
  margin: auto;
  display: block;
}

@media screen and (max-width: 1100px) {
  .panel.image img, .panel.two_column_diagram .diagram-area-inner img {
    max-width: 100%;
  }
}
/* Resources */
.single-resource-inner .hidden-content {
  display: none;
}

.container.resources-container.flex {
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.single-resource-inner > :first-child {
  margin-top: 0;
}

.single-resource {
  position: relative;
  max-width: calc(25% - 2em);
  width: 100%;
  margin-right: 2em;
  margin-bottom: 2em;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 1.5em;
  aspect-ratio: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  cursor: pointer;
  transition: all linear 0.35s;
  -webkit-transition: all linear 0.35s;
  -moz-transition: all linear 0.35s;
}
.single-resource:hover {
  transform: scale(1.025);
}
.single-resource .expand {
  position: absolute;
  top: 0.5em;
  right: 1em;
  width: 15px;
  height: 10px;
}
.single-resource.expanded .expand {
  transform: scaleY(-1);
  top: 1.5em;
}
.single-resource h3 {
  font-size: 1.125em;
}
.single-resource * {
  color: #fff;
}
.single-resource a, .single-resource a:visited {
  color: #fff;
}
.single-resource:nth-child(2n+1) {
  background-color: #52A3CD;
}
.single-resource:nth-child(2n+2) {
  background-color: #8CBED4;
}
.single-resource:nth-child(2n+2) h3 a:hover {
  color: #DCE3EB;
}

.single-resource.expanded {
  max-width: 100%;
  aspect-ratio: initial;
  width: 100%;
}
.single-resource.expanded .hidden-content {
  display: block;
}

.hidden-content {
  border-top: 1px solid #fff;
  margin-top: 0.5em;
  padding-top: 0.5em;
}

.single-resource.expanded h3 {
  margin-bottom: 0;
}

.single-resource .summary {
  font-size: 0.85em;
}

.key-topics.flex {
  justify-content: flex-start;
  margin-top: 1em;
  flex-wrap: wrap;
}

.badge, .fullwidth-box h4 {
  background-color: #fff;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.85em;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 10px;
  color: #253242 !important;
  border: 1px solid #253242;
}
.badge:nth-child(4n+2), .fullwidth-box h4:nth-child(4n+2) {
  background-color: #8CBED4;
  color: #fff;
}
.badge:nth-child(4n+3), .fullwidth-box h4:nth-child(4n+3) {
  background-color: #52A3CD;
  color: #fff;
}
.badge:nth-child(4n+4), .fullwidth-box h4:nth-child(4n+4) {
  background-color: #13799B;
  color: #fff;
}

.resources .badge, .resources .fullwidth-box h4, .fullwidth-box .resources h4 {
  background-color: #13799B;
  color: #fff !important;
}
.resources .badge:nth-child(2n+2), .resources .fullwidth-box h4:nth-child(2n+2), .fullwidth-box .resources h4:nth-child(2n+2) {
  background-color: rgb(14.8232758621, 94.400862069, 120.9267241379);
  color: #fff;
}

.single-resource .publisher p {
  font-weight: 700;
  font-size: 0.85em;
}

.page-id-279 .grid {
  grid-template-columns: repeat(2, 2fr);
}

.show-numbers-no .number {
  display: none;
}

@media screen and (max-width: 900px) {
  .single-resource {
    max-width: calc(50% - 2em);
  }
}
@media screen and (max-width: 600px) {
  .single-resource {
    max-width: 100%;
    margin-right: 0;
    aspect-ratio: initial;
  }
  .page-id-279 .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* FAQ */
.faq .header {
  margin-bottom: 2em;
}

.faq-item h3:not(:first-child) {
  margin-top: 20px;
}

.faq-item h3:not(:last-child) {
  margin-bottom: 10px;
}

.faq-item {
  background-color: #fff;
  border-radius: 25px;
  font-weight: 400;
  font-style: normal;
}
.faq-item .faq-question {
  font-weight: 700 !important;
  font-style: normal;
  font-weight: initial;
  font-size: 1.125em;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
  padding: 10px 20px;
}
.faq-item .faq-question .plus {
  font-size: 2em;
  line-height: 1em;
}
.faq-item .faq-question.opened * {
  color: #52A3CD !important;
}
.faq-item .answer {
  display: none;
  padding: 10px 20px;
}

.lead-respondent {
  background-color: #DCE3EB;
  padding: 1em;
  margin-top: 2em;
  border-radius: 25px;
  width: auto !important;
  justify-content: flex-start;
}
.lead-respondent img {
  max-width: 150px;
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-right: 40px;
}
.lead-respondent .info *:not(i):not(i span):not(em):not(em span) {
  font-weight: 700 !important;
}
.lead-respondent .info i, .lead-respondent .info i span, .lead-respondent .info em, .lead-respondent .info em span {
  font-weight: 300 !important;
}

.faq-items {
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 600px) {
  .faq-items {
    padding: 0 !important;
  }
  .lead-respondent img {
    max-width: 100px;
    margin-right: 20px;
  }
}
/* Timeline */
.timeline-point .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #13799B;
  margin: auto;
}

.timeline.flex {
  justify-content: space-between;
  margin: 2em 0 4em;
  padding: 0 15px;
  position: relative;
}
.timeline.flex::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: block;
  height: 4px;
  background-color: #ccc;
  transform: translateY(-50%);
}

.timeline-point {
  position: relative;
  flex: 1;
  cursor: pointer;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
}
.timeline-point:hover {
  transform: scale(1.05);
}
.timeline-point:hover .name {
  opacity: 1;
}

.timeline-point .name {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% - 5px));
  color: #fff;
  background-color: #13799B;
  padding: 5px;
  font-size: 0.85em;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 150px;
  font-weight: 700;
}

.timeline-sequential-item {
  margin: 0 0 1em;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
}
.timeline-sequential-item.hovered {
  border-left: 5px solid #13799B;
  padding-left: 15px;
}

.timeline-point:first-child .name, .timeline-point:last-child .name {
  opacity: 1;
}

.timeline-sequential-item p {
  margin-top: 0;
}

.timeline-sequential-item {
  display: flex;
}
.timeline-sequential-item .date {
  width: 20%;
}
.timeline-sequential-item .content {
  width: 80%;
  padding-left: 2em;
}

/* Vertical Timeline */
.timeline-vertical {
  position: relative;
  margin: 2em 0 4em;
  padding: 0 20px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ccc;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 4em;
  width: 100%;
  display: flex;
  z-index: 2;
}
.timeline-item .timeline-point {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.timeline-item .timeline-point .dot {
  width: 30px;
  height: 30px;
  background-color: #13799B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-item .timeline-point .dot::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 50%;
}
.timeline-item .timeline-content {
  width: 45%;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
}
.timeline-item .timeline-content .date {
  font-weight: bold;
  color: #13799B;
  margin-bottom: 0.5em;
}
.timeline-item .timeline-content .content p:first-child {
  margin-top: 0;
}
.timeline-item .timeline-content .content p:last-child {
  margin-bottom: 0;
}
.timeline-item.left {
  justify-content: flex-end;
}
.timeline-item.left .timeline-content {
  margin-right: 5%;
}
.timeline-item.right {
  justify-content: flex-start;
}
.timeline-item.right .timeline-content {
  margin-left: 5%;
}
.timeline-item.hovered .timeline-content {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.timeline-item.hovered .dot {
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .timeline.flex {
    flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  .timeline-item .timeline-content {
    width: 80%;
  }
  .timeline-item.left, .timeline-item.right {
    justify-content: flex-end;
  }
  .timeline-item.left .timeline-content, .timeline-item.right .timeline-content {
    margin-right: 30px;
    margin-left: 0;
  }
  .timeline-item .timeline-point {
    left: 0;
    transform: none;
  }
  .timeline-line {
    left: 15px;
    transform: none;
  }
}
@media screen and (max-width: 600px) {
  .timeline-sequential-item {
    flex-direction: column;
  }
  .timeline-sequential-item .date {
    width: 100%;
    margin-bottom: 5px;
  }
  .timeline-sequential-item .content {
    width: 100%;
    padding-left: 0;
  }
}
/* Fullwidth Boxes */
.fullwidth-box {
  background-color: rgb(23.1767241379, 147.599137931, 189.0732758621);
  border-radius: 50px;
  padding: 2em;
  color: #fff;
  margin: 1.5em 0;
}
.fullwidth-box a {
  color: #fff;
  font-weight: 700;
}
.fullwidth-box:nth-child(4n+2) {
  background-color: rgb(111.6737668161, 178.7802690583, 213.5762331839);
}
.fullwidth-box:nth-child(4n+3) {
  background-color: rgb(167.8401898734, 205.7357594937, 222.4098101266);
}
.fullwidth-box:nth-child(4n+4) {
  background-color: rgb(50.7402912621, 68.567961165, 90.5097087379);
}
.fullwidth-box h3 {
  margin-top: 0;
  font-size: 1.5em;
}
.fullwidth-box h4 {
  font-size: 1em;
  font-weight: 700;
  color: #fff !important;
  display: inline-block;
}

.fullwidth-box::after {
  content: "";
  clear: both;
  display: block;
}

.fullwidth-box img {
  background-color: #fff;
  padding: 10px;
}

/* Team Members */
.team-member img {
  border-radius: 50%;
  aspect-ratio: 1;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 1em;
  display: block;
  object-fit: cover;
}

.team-member .content {
  text-align: center;
}

.team-member .image {
  position: relative;
}
.team-member .image:hover .hover-image {
  opacity: 1;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
}

/* Blog */
.blog-individual-post .thumb img {
  max-width: 300px;
  border-radius: 40px;
  display: block;
  overflow: hidden;
  margin-right: 3em;
  aspect-ratio: 1;
  object-fit: cover;
}

.blog-individual-post .read-more a {
  font-weight: 700;
}
.blog-individual-post .info h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5em;
}
.blog-individual-post .info h3 a {
  color: #253242;
  text-decoration: none;
}
.blog-individual-post .info h3 a:hover {
  color: #13799B;
}

.blog-individual-post .badge, .blog-individual-post .fullwidth-box h4, .fullwidth-box .blog-individual-post h4, .single-post .badge, .single-post .fullwidth-box h4, .fullwidth-box .single-post h4 {
  background-color: #13799B;
  border-radius: 75px;
  color: #fff !important;
  border: none;
}
.blog-individual-post .badge i, .blog-individual-post .fullwidth-box h4 i, .fullwidth-box .blog-individual-post h4 i, .single-post .badge i, .single-post .fullwidth-box h4 i, .fullwidth-box .single-post h4 i {
  margin-right: 10px;
}
.blog-individual-post .badge.author, .blog-individual-post .fullwidth-box h4.author, .fullwidth-box .blog-individual-post h4.author, .single-post .badge.author, .single-post .fullwidth-box h4.author, .fullwidth-box .single-post h4.author {
  background-color: #64B49C;
  font-weight: 300;
}
.blog-individual-post .badge.author b, .blog-individual-post .fullwidth-box h4.author b, .fullwidth-box .blog-individual-post h4.author b, .blog-individual-post .badge.author strong, .blog-individual-post .fullwidth-box h4.author strong, .fullwidth-box .blog-individual-post h4.author strong, .single-post .badge.author b, .single-post .fullwidth-box h4.author b, .fullwidth-box .single-post h4.author b, .single-post .badge.author strong, .single-post .fullwidth-box h4.author strong, .fullwidth-box .single-post h4.author strong {
  font-weight: 700;
}

.blog-individual-post.flex:not(:first-child) {
  margin-top: 3em;
  padding-top: 3em;
  border-top: 1px solid #000;
}

.blog_section h5, .blog_section .nav-links > div {
  display: flex;
  justify-content: center;
}

.single-post h1 {
  font-size: 3em;
}

.single-post .badges {
  justify-content: flex-start;
}

.single-post .site-header .header-content {
  justify-content: flex-end;
  padding-bottom: 100px;
}

.single-post .site-main > .container > article {
  transform: translateY(-60px);
  background-color: #fff;
  padding: 2em;
}

.single-post .wp-block-image {
  text-align: center;
}

.single-post .entry-content p:nth-of-type(1):not(:first-child):not(:nth-child(2)) {
  margin-top: 50px;
}

.single-post .entry-content p {
  line-height: 1.75;
}

.single-post .overlay::before {
  background-color: rgba(4, 4, 4, 0.69);
}

.single-post .bg-image.absolute {
  filter: blur(0.5em);
}

.entry-content .attachment-post-thumbnail:first-child {
  float: left;
  width: 50%;
  margin: 0 2em 2em 0;
}

.about-the-author {
  background-color: #13799B;
  padding: 2em;
  color: #fff;
}
.about-the-author .flex {
  justify-content: flex-start;
}
.about-the-author .info {
  margin-left: 2em;
}
.about-the-author .info h4 {
  font-size: 1.25em;
  font-weight: 500;
}
.about-the-author h3 {
  margin-top: 0;
  font-size: 1.5em;
}
.about-the-author .photo img {
  max-width: 100px;
  object-fit: cover;
  display: block;
  object-position: center;
  border-radius: 50%;
}

.single-post .entry-content {
  margin: 0;
}
.single-post .entry-content > *:first-child {
  margin-top: 0;
}

.archive .posts-container {
  padding-top: 3em;
  padding-bottom: 3em;
}

#nf-form-title-1 {
  display: none;
}

.site-main .nf-form-content {
  padding: 2em 0;
  max-width: 100%;
  margin: 0 auto;
}

.blog-individual-post .info {
  flex: 1;
}

.search .site-main .container {
  padding-top: 3em;
  padding-bottom: 3em;
}

.timeline > .container {
  padding-bottom: 2em;
}

.main-navigation ul li.current_page_item:not(.fa) a::after {
  opacity: 1;
}

.header h3:first-child {
  margin-top: 0;
}

.blog-individual-post .badges.flex {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.blog-individual-post .badges.flex .tag {
  text-decoration: none;
  background-color: #52A3CD;
}
.blog-individual-post .badges.flex .tag:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .blog-individual-post .thumb img {
    max-width: 200px;
  }
  .single-post h1 {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .single-post .badges.flex {
    flex-wrap: wrap;
  }
  .entry-content .attachment-post-thumbnail:first-child {
    float: none;
    width: 100%;
    margin: 0 0 2em;
  }
  .blog-individual-post.flex {
    flex-direction: column;
  }
  .blog-individual-post .thumb img {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 2em;
    aspect-ratio: initial;
  }
  .single-post h1 {
    font-size: 2em;
  }
  .single-post .site-main > .container > article {
    transform: initial;
    padding-left: 0;
    padding-right: 0;
  }
  .single-post .site-header .header-content {
    justify-content: center;
    padding-bottom: 0;
  }
}
/* Tabs Styling */
.tabs-nav {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-nav-item {
  cursor: pointer;
  padding: 1.25em 1.5em;
  margin: 0 0.5em;
  border: 1px solid #ddd;
  border-bottom: none;
  background-color: #f7f7f7;
  border-radius: 4px 4px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 120px;
}

.tab-nav-item.active {
  background-color: #fff;
  border-color: #ddd;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
  position: relative;
}

.tab-nav-item:hover:not(.active) {
  background-color: #e9e9e9;
}

.tab-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75em;
  min-height: 50px;
}

.tab-icon img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}

.tab-title {
  font-weight: 500;
  line-height: 1.2;
  color: #02757F;
}

.tab-content {
  padding: 2em;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  margin-bottom: 2em;
}

/* New styles for tab content header */
.tab-content-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: 1px solid #f0f0f0;
}

.tab-content-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 1em;
  padding: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.tab-content-icon img {
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
}

.tab-content-title {
  font-size: 1.25em;
  font-weight: 500;
  color: #02757F;
}

.tab-content-body {
  padding-top: 0.5em;
}

.tab-content-wrapper {
  margin-bottom: 1em;
}

/* Style for code of conduct specific tabs */
.page-template-page-panels-v2 .tabs-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-template-page-panels-v2 .tab-content p {
  margin-bottom: 1em;
  line-height: 1.6;
}

/* Responsive adjustments for tabs */
@media screen and (max-width: 768px) {
  .tabs-nav {
    flex-direction: column;
    border-bottom: none;
    align-items: center;
    margin-bottom: 0;
  }
  .tab-nav-item {
    margin: 0.25em 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 80%;
    max-width: 300px;
  }
  .tab-nav-item.active {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0.25em;
  }
  .tab-content {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 1em;
  }
  .tab-content-header {
    flex-direction: column;
    text-align: center;
  }
  .tab-content-icon {
    margin-right: 0;
    margin-bottom: 0.75em;
  }
}
.main-navigation .more-link ul.sub-menu li .sub-menu {
  margin-left: -225px !important;
  padding-top: 0;
}

.main-navigation ul li.more-link:hover > ul {
  left: initial !important;
  right: 0 !important;
}

html {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .main-navigation .more-link ul.sub-menu li .sub-menu {
    margin-left: 0 !important;
  }
}
div#mc_embed_signup {
  margin: auto;
  background: transparent;
}
div#mc_embed_signup * {
  font-family: "Inter", sans-serif;
}
div#mc_embed_signup .indicates-required {
  display: none;
}
div#mc_embed_signup .content__gdpr label {
  font-weight: 700;
}

#mc_embed_signup h2 {
  display: none;
}

#mc-embedded-subscribe-form {
  margin-bottom: 0;
}

#mc_embed_signup .button {
  margin-bottom: -1em;
}

@media screen and (max-width: 900px) {
  #mc_embed_signup {
    width: 100% !important;
  }
  .pum-theme-default-theme .pum-container {
    padding: 75px 20px 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .single .content-sidebar-wrap {
    flex-direction: column;
    display: block !important;
  }
  .content-sidebar-wrap .sticky-sidebar {
    width: 100% !important;
  }
  .single .entry-content ul {
    margin-left: 0;
  }
}
.about-the-author h3 {
  margin-top: 2rem !important;
}

.recent-post-link.flex {
  justify-content: flex-start;
}

.page-template-page-panels-v2 button.menu-toggle, .page-template-page-panels-v2 .nav-links > div > a.menu-toggle, .page-template-page-panels-v2 .menu-toggle:hover {
  background: transparent !important;
  padding: 0 !important;
}

/* Homepage v2 Styles
--------------------------------------------- */
/* Panels v2 Styles
--------------------------------------------- */
#masthead .container.flex {
  align-items: flex-start;
}

.contact-button a {
  background-color: #CFE3E2;
  padding: 10px 30px;
  border-radius: 25px;
  color: #415157 !important;
}
.contact-button a::after {
  display: none !important;
}

#primary-menu {
  align-items: center;
}

#site-navigation {
  padding-top: 0.5em;
}

.carbon-removal-amount {
  text-align: center;
  margin-bottom: 1rem;
}
.carbon-removal-amount .amount-number {
  font-size: 3em;
  font-weight: 500;
  line-height: 1.2;
}

.carbon-removal-content {
  text-align: center;
  max-width: 800px;
}
.carbon-removal-content h2 {
  margin-top: 0;
}
.carbon-removal-content p {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .carbon-removal-content p {
    font-size: 1.4rem;
  }
}

.carbon_removal_ticker .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.carbon-removal-content p {
  font-size: 1em;
  margin: 0 !important;
}

.carbon-removal-amount {
  margin-bottom: 0;
}

.carbon_removal_ticker {
  padding: 1.5em 1em;
}

@media (min-width: 992px) {
  .carbon-removal-amount .amount-number {
    font-size: 3em;
  }
}
.page-template-page-panels-v2 {
  /* Boxes Callout Styles */
  /* Featured Posts Styling */
}
.page-template-page-panels-v2 * {
  color: #02757F;
}
.page-template-page-panels-v2 b, .page-template-page-panels-v2 strong {
  font-weight: 500;
}
.page-template-page-panels-v2 .site-header * {
  color: #fff !important;
}
.page-template-page-panels-v2 .main-navigation ul.sub-menu li a {
  background-color: rgba(2, 117, 127, 0.9);
}
.page-template-page-panels-v2 .site-header .contact-button:hover {
  filter: brightness(1.1);
}
.page-template-page-panels-v2 #searchform {
  background-color: rgba(2, 117, 127, 0.92);
}
.page-template-page-panels-v2 h1 {
  font-weight: 500 !important;
  line-height: 1.25;
  font-size: 3.5em;
}
.page-template-page-panels-v2 .site-header {
  min-height: 50em !important;
}
.page-template-page-panels-v2 .carbon_removal_ticker {
  padding: 1em;
  max-width: 400px;
  margin: auto;
  transform: translateY(-50%);
  background: #FFFFFF;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
  border-radius: 29px;
}
.page-template-page-panels-v2 .call_to_action .container .bg-image, .page-template-page-panels-v2 .newsletter_call_to_action .container .bg-image {
  border-radius: 55px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.page-template-page-panels-v2 .call_to_action .content, .page-template-page-panels-v2 .newsletter_call_to_action .content {
  z-index: 3;
  background-color: rgba(207, 227, 226, 0.91);
  opacity: 0.91;
  border-radius: 29px;
  padding: 1.25em 3em;
  color: #02757F;
}
.page-template-page-panels-v2 h3 {
  font-weight: 500 !important;
  font-size: 1.5em;
}
.page-template-page-panels-v2 .call_to_action h3, .page-template-page-panels-v2 .newsletter_call_to_action h3 {
  margin: 0 0 10px;
}
.page-template-page-panels-v2 .call_to_action h5, .page-template-page-panels-v2 .call_to_action .nav-links > div, .page-template-page-panels-v2 .newsletter_call_to_action h5, .page-template-page-panels-v2 .newsletter_call_to_action .nav-links > div {
  margin: 0;
}
.page-template-page-panels-v2 h5 a, .page-template-page-panels-v2 .nav-links > div a {
  background-color: #02757F;
  color: #fff !important;
  border: none !important;
  font-weight: 400 !important;
}
.page-template-page-panels-v2 h5 a::before, .page-template-page-panels-v2 .nav-links > div a::before {
  display: none !important;
}
.page-template-page-panels-v2 .call_to_action .container, .page-template-page-panels-v2 .newsletter_call_to_action .container {
  min-height: initial;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 6em;
  padding-bottom: 6em;
}
.page-template-page-panels-v2 .panel {
  padding: 2em 0;
}
.page-template-page-panels-v2 .carbon_removal_ticker + .panel {
  margin-top: -2em;
}
.page-template-page-panels-v2 .bg-teal {
  background-color: #02757F;
}
.page-template-page-panels-v2 .bg-coral {
  background-color: #F3B6AE;
}
.page-template-page-panels-v2 .two_column_content .container > * {
  padding: 2.5em !important;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
  border-radius: 55px;
}
.page-template-page-panels-v2 .two_column_content .container {
  gap: 1.5em;
}
.page-template-page-panels-v2 .call_to_action .bg-image, .page-template-page-panels-v2 .newsletter_call_to_action .bg-image {
  max-width: calc(100% - 3em);
  left: 50%;
  transform: translateX(-50%);
}
.page-template-page-panels-v2 .two_column_content .content-left img {
  border-radius: 35px;
}
.page-template-page-panels-v2 h2 {
  text-transform: uppercase;
  font-weight: 500 !important;
  line-height: 1.25;
}
.page-template-page-panels-v2 .bg-teal * {
  color: #fff;
}
.page-template-page-panels-v2 .read-more-btn, .page-template-page-panels-v2 .featured-posts-button .btn {
  background-color: #CFE3E2;
  padding: 10px 30px;
  border-radius: 25px;
  color: #415157 !important;
}
.page-template-page-panels-v2 .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}
.page-template-page-panels-v2 .custom-button .btn {
  background-color: #02757F;
  color: #fff !important;
  border: none !important;
  padding: 10px 30px;
  border-radius: 25px;
}
.page-template-page-panels-v2 .custom-button .btn::before {
  display: none !important;
}
.page-template-page-panels-v2 .button-group {
  flex: 1;
  display: flex;
  align-items: flex-end !important;
}
.page-template-page-panels-v2 .button-group * {
  margin-bottom: 0;
  font-weight: 400 !important;
}
.page-template-page-panels-v2 .two_column_content .flex > * {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.page-template-page-panels-v2 .read-more-btn, .page-template-page-panels-v2 .featured-posts-button .btn {
  display: block;
  text-decoration: none !important;
  line-height: 24px;
}
.page-template-page-panels-v2 .bg-teal .btn {
  background-color: #fff !important;
  color: #02757F !important;
}
.page-template-page-panels-v2 .btn:hover, .page-template-page-panels-v2 .read-more-btn:hover, .page-template-page-panels-v2 .featured-posts-button .btn:hover {
  filter: brightness(1.1);
}
.page-template-page-panels-v2 .two_column_content img {
  max-height: 310px;
  object-fit: cover;
  overflow: hidden;
}
.page-template-page-panels-v2 .two_column_content h2 {
  margin-top: 0;
}
.page-template-page-panels-v2 .call_to_action p, .page-template-page-panels-v2 .newsletter_call_to_action p {
  font-size: 1.75em;
  line-height: 1.5;
  margin: 0;
}
.page-template-page-panels-v2 .fade-in #site-navigation {
  padding-top: 0;
}
.page-template-page-panels-v2 .fade-in.top-header {
  background-color: rgba(2, 117, 127, 0.95);
}
.page-template-page-panels-v2 .boxes-callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2em;
  margin: 2em 0;
}
.page-template-page-panels-v2 .boxes-callout-container {
  position: relative;
}
.page-template-page-panels-v2 .boxes_callout {
  position: relative;
}
.page-template-page-panels-v2 .boxes_callout .bg-image.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.page-template-page-panels-v2 .boxes_callout .bg-image.absolute img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-panels-v2 .callout-box {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-page-panels-v2 .box-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-template-page-panels-v2 .box-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-panels-v2 .box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 117, 127, 0.7);
  z-index: 2;
}
.page-template-page-panels-v2 .box-content {
  position: relative;
  z-index: 3;
  padding: 2em;
  text-align: center;
  color: #fff;
}
.page-template-page-panels-v2 .box-content h3 {
  color: #fff;
  margin-top: 0;
}
.page-template-page-panels-v2 .box-content p {
  margin-bottom: 0;
}
.page-template-page-panels-v2 .box-content a {
  color: #fff;
  text-decoration: underline;
}
.page-template-page-panels-v2 .box-content a:hover {
  color: #F3B6AE;
}
@media (max-width: 768px) {
  .page-template-page-panels-v2 .boxes-callout-grid {
    grid-template-columns: 1fr;
  }
  .page-template-page-panels-v2 .callout-box {
    min-height: 250px;
  }
}
.page-template-page-panels-v2 .boxes_callout .container {
  position: relative;
}
.page-template-page-panels-v2 .boxes_callout .bg-image.absolute {
  max-width: calc(100% - 3em);
  left: 50% !important;
  transform: translateX(-50%);
  border-radius: 55px;
  overflow: hidden;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
}
.page-template-page-panels-v2 .boxes_callout .header {
  position: relative;
  padding-top: 1.5em;
}
.page-template-page-panels-v2 .boxes_callout h2 {
  margin-bottom: 0;
}
.page-template-page-panels-v2 .page-template-page-panelsv2 .boxes-callout-grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 1.5em;
  margin: 2em 0;
}
.page-template-page-panels-v2 .callout-box {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  min-height: initial;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-template-page-panels-v2 .box-content * {
  color: #fff;
  text-align: left;
}
.page-template-page-panels-v2 .box-content strong, .page-template-page-panels-v2 .box-content b {
  font-weight: 500 !important;
  font-size: 1.125em;
}
.page-template-page-panels-v2 .boxes-callout-grid {
  grid-template-columns: repeat(2, 2fr) !important;
}
.page-template-page-panels-v2 .box-content p:first-child {
  margin-top: 0;
}
.page-template-page-panels-v2 .box-content {
  padding: 1.5em 2em;
}
.page-template-page-panels-v2 .container.boxes-callout-container {
  padding-bottom: 2.5em;
}
.page-template-page-panels-v2 .carousel .container {
  padding-top: 1em;
  padding-bottom: 1em;
}
.page-template-page-panels-v2 .boxes-callout-grid {
  margin-bottom: 0 !important;
}
.page-template-page-panels-v2 .tabs .header {
  max-width: 900px;
  margin-bottom: 2em;
}
.page-template-page-panels-v2 .tabs .header p {
  margin-bottom: 1.5em;
}
.page-template-page-panels-v2 hr {
  background-color: #CFE3E2;
  max-width: 150px;
  height: 5px;
  border-radius: 5px;
}
.page-template-page-panels-v2 .tabs-nav {
  justify-content: space-between;
}
.page-template-page-panels-v2 .tab-nav-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0.5em 1em;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  margin: 0 !important;
}
.page-template-page-panels-v2 .tab-nav-item.active {
  border-bottom: 2px solid #02757F;
}
.page-template-page-panels-v2 .tab-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  min-height: initial;
}
.page-template-page-panels-v2 .tab-content {
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 2em;
  background-color: teal;
  border-radius: 30px;
  margin-top: 2em;
}
.page-template-page-panels-v2 .tab-content p {
  color: #fff;
}
.page-template-page-panels-v2 .tab-nav-item {
  padding-bottom: 1em;
}
.page-template-page-panels-v2 .tab-nav-item.active {
  border-bottom: 2px solid teal;
}
.page-template-page-panels-v2 .tab-content-header {
  border: 0;
  margin: 0;
}
.page-template-page-panels-v2 .tab-content-title {
  color: #fff;
}
.page-template-page-panels-v2 .tabs .container.footer {
  max-width: calc(1000px - 4em);
  padding: 1em 10vw;
  background-color: #CFE3E2;
  border-radius: 15px;
}
.page-template-page-panels-v2 h3:first-child:last-child {
  margin: 0;
}
.page-template-page-panels-v2 .featured-posts-button .btn {
  border: 0;
  font-weight: 400;
}
.page-template-page-panels-v2 .featured-posts-button .btn::before {
  display: none;
}
.page-template-page-panels-v2 .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5em;
}
.page-template-page-panels-v2 .post-image {
  aspect-ratio: 1.5;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1em;
}
.page-template-page-panels-v2 .post-image:hover {
  filter: brightness(1.25);
}
.page-template-page-panels-v2 .post-title-container {
  display: flex;
  align-items: center;
  gap: 0.75em;
  text-decoration: none;
  padding: 0.5em 0;
}
.page-template-page-panels-v2 .post-title-container:hover .post-title {
  text-decoration: underline;
}
.page-template-page-panels-v2 .map-marker {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #CFE3E2;
  border-radius: 50%;
  padding: 6px;
}
.page-template-page-panels-v2 .map-marker img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.page-template-page-panels-v2 .post-title {
  font-weight: 500;
  font-size: 1.1em;
  color: #02757F;
}
.page-template-page-panels-v2 .posts-grid.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5em;
  margin: 2em 0;
}
.page-template-page-panels-v2 .map-marker {
  background-color: #CFE3E2;
}
.page-template-page-panels-v2 .post-title-container {
  aspect-ratio: initial !important;
  justify-content: flex-start;
}
.page-template-page-panels-v2 .post-title {
  font-weight: 600;
  font-size: 1em;
  color: #02757F;
}
.page-template-page-panels-v2 .posts-grid a.post-title-container:hover {
  filter: initial;
}
.page-template-page-panels-v2 .posts-grid a.post-title-container:hover .post-title {
  filter: brightness(1.1);
  text-decoration: none;
}

.site-footer {
  background-color: #02757F;
}

.site-footer::before {
  top: -29px;
  height: 30px;
}

.page-template-page-panels-v2 .post-image {
  border-radius: 25px;
}

.page-template-page-panels-v2 .posts-grid.grid {
  grid-template-columns: repeat(2, 2fr);
}

.carbon-removal-amount {
  min-width: 140px;
}

body.page-template-page-panels-v2:not(.home) .site-header {
  min-height: 30em !important;
}

body.page-template-page-panels-v2:not(.home) .site-header .header-content p {
  max-width: 600px;
  font-weight: 500;
}

.page-template-page-panels-v2 .panel.text_with_image {
  padding: 4.5em 0;
}

body.page-template-page-panels-v2 .timeline .header {
  text-align: center;
}
body.page-template-page-panels-v2 .text_with_image .flex {
  align-items: flex-start;
}
body.page-template-page-panels-v2 .text_with_image .image-caption {
  margin-top: 15px;
  font-weight: 500;
}
body.page-template-page-panels-v2 .text_with_image img {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
}
body.page-template-page-panels-v2 .timeline-item .timeline-point .dot {
  border: 3.5px solid #fff;
  transition: all linear 0.175s;
}
body.page-template-page-panels-v2 .timeline-item .timeline-point .dot::after {
  display: none;
}
body.page-template-page-panels-v2 .timeline-item .timeline-content {
  width: 45%;
  padding: 20px;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all linear 0.175s;
  -webkit-transition: all linear 0.175s;
  -moz-transition: all linear 0.175s;
  padding: 0 50px !important;
}
body.page-template-page-panels-v2 .timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 105%;
  background-color: #ccc;
  transform: translateX(-50%);
  z-index: 1;
  margin-top: -2.5%;
  border-radius: 6px;
}
body.page-template-page-panels-v2 .right .timeline-content {
  text-align: right;
}
body.page-template-page-panels-v2 .posts-grid.grid {
  display: grid;
  gap: 1rem;
  /* Adjust minmax(200px, 1fr) as needed */
  /* Creates columns at least 200px wide, distributing extra space */
}
body.page-template-page-panels-v2 .timeline-item .timeline-content .date {
  margin-bottom: 0;
}

.page-template-page-panels-v2 .posts-grid.grid {
  display: grid;
  gap: 1rem; /* Or your desired gap */
  /* Default to 1 column */
  grid-template-columns: 1fr;
}

/* 2 children -> 2 columns */
.page-template-page-panels-v2 .posts-grid.grid:has(> :nth-last-child(2):first-child) {
  grid-template-columns: repeat(2, 1fr);
}

/* 3 children -> 3 columns */
.page-template-page-panels-v2 .posts-grid.grid:has(> :nth-last-child(3):first-child) {
  grid-template-columns: repeat(3, 1fr);
}

/* 4 or more children -> 4 columns */
.page-template-page-panels-v2 .posts-grid.grid:has(> :nth-child(4)) {
  grid-template-columns: repeat(4, 1fr);
}

.page-template-page-panels-v2 .text_with_image .image img {
  aspect-ratio: 1;
  object-fit: cover;
}
.page-template-page-panels-v2 .text_with_image .icon {
  background-color: #CFE3E2;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin-bottom: 2em;
}
.page-template-page-panels-v2 .text_with_image .icon img {
  width: 22.5px;
  height: 22.5px;
  display: block;
  margin: auto;
  background-color: transparent;
  box-shadow: initial !important;
}
.page-template-page-panels-v2 .call_to_action h2 {
  text-transform: initial !important;
  margin-top: 0 !important;
}
.page-template-page-panels-v2 .text_with_image h5 a, .page-template-page-panels-v2 .text_with_image .nav-links > div a {
  background-color: #CFE3E2;
  color: #02757F !important;
}
.page-template-page-panels-v2 .text_with_image h5 a:hover, .page-template-page-panels-v2 .text_with_image .nav-links > div a:hover {
  background-color: rgb(239.2105263158, 245.7894736842, 245.4605263158);
}
.page-template-page-panels-v2 .goals-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two column grid */
  gap: 20px; /* Adjust gap as needed */
}
.page-template-page-panels-v2 .goals-list .goal-item:last-child:nth-child(odd) {
  grid-column: span 2; /* Last item spans both columns if it's an odd-numbered child */
}
.page-template-page-panels-v2 .goals-footer {
  border-radius: 15px;
  background-color: #CFE3E2; /* Assuming $blue is a defined SASS variable */
}
.page-template-page-panels-v2 .boxes-callout-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.page-template-page-panels-v2 .box-link {
  text-decoration: none;
}
.page-template-page-panels-v2 .box-link:hover {
  text-decoration: none;
}
.page-template-page-panels-v2 .withoutimage .box-overlay {
  display: none;
}
.page-template-page-panels-v2 .withoutimage {
  margin-top: -90px;
}
.page-template-page-panels-v2 .withoutimage .callout-box {
  border-radius: 25px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.page-template-page-panels-v2 .box-bg-image {
  transform: initial;
  transition: all linear 0.175s;
}
.page-template-page-panels-v2 .box-link:hover .box-bg-image {
  transform: scale(1.05);
}
.page-template-page-panels-v2 .goal-item {
  display: flex;
  align-items: flex-start;
}
.page-template-page-panels-v2 .goal-icon, .page-template-page-panels-v2 .detail-icon {
  width: 40px;
  height: 40px;
  margin-right: 1em;
  border-radius: 50%;
  background-color: #CFE3E2;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-panels-v2 .goal-icon img, .page-template-page-panels-v2 .detail-icon img {
  max-width: 20px;
  max-height: 20px;
  display: block;
}
.page-template-page-panels-v2 .goals {
  max-width: 1166px;
  margin: auto;
}
.page-template-page-panels-v2 .goals-footer {
  padding: 10px 20px;
  margin-top: 2em;
  max-width: 900px;
  margin: 2em auto 0;
}
.page-template-page-panels-v2 .call_to_action p:last-child {
  margin-bottom: 0;
}
.page-template-page-panels-v2 .anchor-links {
  background-color: transparent;
  padding: 0;
}
.page-template-page-panels-v2 .anchor-links .container {
  transform: translateY(-30px);
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}
.page-template-page-panels-v2 .project-detail-item {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
  align-items: center;
}
.page-template-page-panels-v2 .detail-icon {
  background-color: #fff;
}
.page-template-page-panels-v2 .anchor-links .flex a, .page-template-page-panels-v2 .anchor-links .flex a:visited {
  font-weight: 500 !important;
}
.page-template-page-panels-v2 .image-contain .image img {
  aspect-ratio: initial !important;
}
.page-template-page-panels-v2 .values .container {
  max-width: 1166px;
}
.page-template-page-panels-v2 .values .header p:last-child {
  margin-bottom: 0;
}
.page-template-page-panels-v2 .accordion-container .accordion-item {
  border-radius: 20px;
  border: 1px solid #979797;
}
.page-template-page-panels-v2 .accordion-container .accordion-header .accordion-icon {
  font-size: 1em;
}
.page-template-page-panels-v2 .accordion-container .accordion-content .content-inner {
  padding: 0;
}
.page-template-page-panels-v2 .accordion-container .accordion-content .content-inner p:first-child {
  margin-top: 0;
}
.page-template-page-panels-v2 .accordion-container .accordion-content .content-inner p:last-child {
  margin-bottom: 0;
}
.page-template-page-panels-v2 .accordion-container .accordion-header .accordion-icon {
  color: #02757F !important;
}
.page-template-page-panels-v2 .accordion-container .accordion-header .accordion-icon::before, .page-template-page-panels-v2 .accordion-container .accordion-header .accordion-icon::after {
  background-color: #02757F;
}
.page-template-page-panels-v2 .accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) .accordion-header .accordion-title, .page-template-page-panels-v2 .accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) .accordion-content .content-inner, .page-template-page-panels-v2 .accordion-container .accordion-item:has(> .accordion-header[aria-expanded=true]) .accordion-content .content-inner * {
  color: #02757F;
}
.page-template-page-panels-v2 .values .footer {
  margin-top: 2em;
}
.page-template-page-panels-v2 .accordion-title {
  font-weight: 500;
}

.page-template-page-panels-v2 .detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  margin-right: 0;
}

.page-template-page-panels-v2 .call_to_action p:first-child:last-child {
  font-size: 24px;
  margin: 0;
}

.page-template-page-panels-v2 .call_to_action p a {
  color: #02757F !important;
}
.page-template-page-panels-v2 .call_to_action p a:hover {
  color: rgb(2.7906976744, 163.2558139535, 177.2093023256) !important;
}

.overlay::before {
  position: absolute !important;
}

h5 a, .nav-links > div a {
  transition: all linear 0.175s;
}

.anchor-links .flex a, .anchor-links .flex a:visited {
  font-weight: 400;
}

.page-template-page-panels-v2 .call_to_action p {
  font-size: 1em;
  margin: 20px;
}

body.page-template-page-panels-v2 .text_with_image .flex {
  align-items: center !important;
}

body.page-id-8795.page-template-page-panels-v2 .text_with_image .flex {
  align-items: flex-start !important;
}

.blog .search-form {
  max-width: 1366px;
  margin: 0 auto;
  transform: translateY(-50%);
}

.blog .search-form input {
  padding: 0 2em;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
}

.search-field {
  width: 100%;
  font-family: "Garet", sans-serif;
}

.posts-container {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
}

.blog .blog_section {
  padding-top: 0;
}

.blog-individual-post.flex {
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
}

/* Media Queries */
@media screen and (max-width: 900px) {
  body.page-template-page-panels-v2 .timeline-item .timeline-content {
    margin: 0;
    padding: 0 25px !important;
  }
}
@media (max-width: 768px) {
  .page-template-page-panels-v2 .call_to_action .content {
    max-width: calc(100% - 3em);
  }
  .page-template-page-panels-v2 .callout-box {
    border-radius: 15px;
  }
  .page-template-page-panels-v2 .main-navigation ul.sub-menu li a {
    background-color: transparent;
  }
  .page-template-page-panels-v2 .call_to_action .container img {
    max-width: 100%;
  }
  .page-template-page-panels-v2 .two_column_content .container {
    gap: 40px;
  }
  .page-template-page-panels-v2 .two_column_content img {
    max-height: 310px;
    object-fit: contain;
    overflow: hidden;
  }
  .page-template-page-panels-v2 .bg-teal img {
    object-fit: cover;
  }
  .page-template-page-panels-v2 .featured_posts .header-content {
    padding: 0;
  }
  body.page-template-page-panels-v2 .timeline-line {
    left: 35px;
  }
  body.page-template-page-panels-v2 .right .timeline-content {
    text-align: left;
  }
  body.page-template-page-panels-v2 .timeline-item .timeline-content {
    width: 90%;
  }
  /* 2 children -> 2 columns */
  .page-template-page-panels-v2 .posts-grid.grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .page-template-page-panels-v2 .goals-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .page-template-page-panels-v2 .boxes-callout-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .tab-nav-item {
    border-radius: 0;
  }
  .page-template-page-panels-v2 .tabs .container.footer {
    max-width: calc(100% - 4em);
  }
  .page-template-page-panels-v2 .tabs.panel ul {
    padding-left: 0;
  }
  .tab-nav-item {
    max-width: 200px;
  }
  .page-template-page-panels-v2 .tab-content {
    border-radius: 15px;
  }
  .page-template-page-panels-v2 .call_to_action .container .bg-image, .page-template-page-panels-v2 .newsletter_call_to_action .container .bg-image {
    border-radius: 35px;
  }
  .page-template-page-panels-v2 .posts-grid.grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .page-template-page-panels-v2 .custom-logo-link .custom-logo {
    max-width: 75px !important;
  }
  .page-template-page-panels-v2 .header-content {
    padding-top: 100px;
  }
  .page-template-page-panels-v2 .panel.text_with_image {
    padding: 2em 0;
  }
  .call_to_action .content {
    max-width: calc(100% - 2em) !important;
  }
  .boxes-callout-container {
    padding-bottom: 0 !important;
  }
  .page-template-page-panels-v2 .anchor-links .container {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .page-template-page-panels-v2 .call_to_action p, .page-template-page-panels-v2 .newsletter_call_to_action p {
    font-size: 1.25em;
    margin: 0;
    margin-bottom: 0px;
  }
  .text_with_image .image img {
    border-radius: 25px;
  }
  .carbon_removal_ticker .container {
    padding: 0;
  }
  .page-template-page-panels-v2 .call_to_action p, .page-template-page-panels-v2 .newsletter_call_to_action p {
    font-size: 1.5em;
  }
  .page-template-page-panels-v2 .carbon_removal_ticker {
    padding: 1em;
    max-width: calc(100% - 3em);
  }
  .page-template-page-panels-v2 .call_to_action .container .bg-image, .page-template-page-panels-v2 .newsletter_call_to_action .container .bg-image {
    border-radius: 35px;
  }
  .page-template-page-panels-v2 .two_column_content .container > * {
    border-radius: 35px;
  }
  .page-template-page-panels-v2 .featured_posts .header-content {
    padding-bottom: 0;
  }
  .page-template-page-panels-v2 .two_column_content .container > * {
    padding: 1.5em !important;
  }
  .button-group {
    justify-content: center;
  }
  .button-group > * {
    width: 100%;
    text-align: center;
    max-width: initial !important;
  }
  .custom-button .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .page-template-page-panels-v2 .call_to_action .content, .page-template-page-panels-v2 .newsletter_call_to_action .content {
    max-width: calc(100% - 2em);
  }
}
.fade-in .custom-logo {
  max-width: 50px !important;
}

#footer-menu {
  list-style: none;
}

.search-form {
  position: relative;
}
.search-form .search-field {
  padding-right: 40px;
}
.search-form button.search-submit, .search-form .nav-links > div > a.search-submit {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  cursor: pointer;
  color: #02757F;
  transition: color 0.2s ease-in-out;
}
.search-form button.search-submit:hover, .search-form .nav-links > div > a.search-submit:hover {
  color: rgb(1.2093023256, 70.7441860465, 76.7906976744);
}

.blog .search-form {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 2em;
  transform: translateY(-50%);
  position: relative;
}
.blog .search-form input.search-field {
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding-right: 40px;
}

button::before, input[type=submit]::before, input[type=button]::before, h5 a::before, .nav-links > div a::before, .button::before, .btn::before {
  display: none !important;
}

.posts-container {
  gap: 40px;
}

.blog-individual-post {
  overflow: hidden;
}

.blog-individual-post.flex:not(:first-child) {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.blog-individual-post .thumb img {
  max-width: 100%;
  border-radius: 0;
  display: block;
  overflow: hidden;
  margin-right: 0;
  aspect-ratio: initial;
  object-fit: cover;
  max-height: 20vw;
  transition: all linear 0.175s;
  width: 100%;
  height: auto;
}

.blog-individual-post .thumb {
  overflow: hidden;
  width: 100%;
  height: auto;
  max-height: 20vw;
  min-height: 20vw;
  background-color: #CFE3E2;
}

.blog-individual-post:hover img {
  transform: scale(1.05);
}

.blog-individual-post .info {
  padding: 20px;
}

.search-form button.search-submit, .search-form .nav-links > div > a.search-submit {
  right: calc(20px + 2em);
}

.excerpt {
  flex: 1;
}

.blog-individual-post .info {
  display: flex;
  flex-direction: column;
}

.date.flex {
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.blog-individual-post .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-individual-post .footer * {
  font-weight: 500 !important;
}

.blog-individual-post .info h3 a {
  color: #02757F;
}

@media (max-width: 768px) {
  .posts-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .blog-individual-post .thumb {
    overflow: hidden;
    height: auto;
    max-height: 40vw;
  }
  .thumb {
    width: 100%;
  }
  .blog-individual-post .thumb img {
    max-height: 40vw;
    min-width: 100%;
    height: auto;
  }
}
.single .badges > * {
  display: flex;
  gap: 10px;
}

.single .badges {
  display: flex;
  gap: 25px;
}
.single .badges .date .icon img {
  filter: brightness(110);
}

.single-post .site-main > .container > article {
  transform: initial;
}

.single-post .site-header .header-content {
  justify-content: center;
  padding-bottom: 0;
  padding-top: 50px;
}

.single .header-content > a {
  margin-bottom: 1.4em;
}

.about-the-author {
  background-color: transparent;
  padding: 0;
  color: #fff;
  border-top: 1px solid #CFE3E2;
}

.about-the-author .photo img {
  max-width: 50px;
}

.about-the-author .flex {
  margin: 20px 0;
}

.content-sidebar-wrap .sticky-sidebar {
  width: 400px;
}

.content-sidebar-wrap .sticky-sidebar .sidebar-widget {
  background-color: teal;
  color: #fff;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: none !important;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget * {
  color: #fff !important;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget p:last-child {
  margin-bottom: 0;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget p, .content-sidebar-wrap .sticky-sidebar .sidebar-widget li {
  font-size: 14px;
}

.content-sidebar-wrap .sticky-sidebar .sidebar-widget:not(:first-child) {
  background-color: #CFE3E2;
  color: #02757F;
}
.content-sidebar-wrap .sticky-sidebar .sidebar-widget:not(:first-child) * {
  color: #02757F !important;
}

.content-sidebar-wrap .sticky-sidebar .sidebar-widget .widget-title {
  border-bottom: none !important;
}

.single-post .site-main > .container > article {
  padding: 2em 0;
}

.icon-boxes-grid {
  grid-template-columns: repeat(3, 3fr);
  display: grid;
  gap: 40px;
}
.icon-boxes-grid > * {
  background-color: #CFE3E2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  padding: 1.5em;
}

.icon-container {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
.icon-container img {
  width: 25px;
  height: 25px;
}

.tab-content p, .tab-content li, .tab-content ul, .tab-content span {
  color: #fff !important;
}

.page-id-8964 .call_to_action:last-child .content {
  background-color: transparent;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.page-id-8964 .call_to_action:last-child .content h2 {
  text-transform: uppercase;
}
.page-id-8964 .call_to_action:last-child .content #nf-form-title-2 {
  display: none;
}
.page-id-8964 .call_to_action:last-child .content .nf-form-content {
  padding-top: 0 !important;
}
.page-id-8964 .call_to_action:last-child .content .nf-element {
  border-radius: 20px !important;
  font-family: "Garet", sans-serif;
  padding: 20px !important;
}
.page-id-8964 .call_to_action:last-child .content body .nf-form-content button, .page-id-8964 .call_to_action:last-child .content body .nf-form-content .nav-links > div > a, .page-id-8964 .call_to_action:last-child .content .nf-form-content input[type=button], .page-id-8964 .call_to_action:last-child .content .nf-form-content input[type=submit] {
  background-color: #02757F;
}

.panel:nth-child(odd) .faq-item {
  background-color: #CFE3E2;
}

.panel:nth-child(even) .faq-item {
  background-color: #02757F;
  color: #fff;
}
.panel:nth-child(even) .faq-item * {
  color: #fff;
}

.faq-question p {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}

.plus {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-weight: 400;
  font-size: 20px !important;
  color: #02757F !important;
}

.lead-respondent.flex {
  background-color: transparent;
}

.content-right-below {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-header.fade-in .container {
  align-items: center !important;
}

.search .site-main > .container {
  gap: 50px;
  display: flex;
  flex-direction: column;
}

.badge.date .fa.fa-calendar, .fullwidth-box h4.date .fa.fa-calendar {
  color: #fff;
}

.goals-footer p:first-child {
  margin-top: 0;
}

.goals-footer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1366px) {
  .anchor-links .container {
    max-width: 95%;
  }
}
h5, .nav-links > div {
  font-size: 1em;
}

.parent-pageid-8807 .site-header .header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-template-page-panels-v2 .site-header .project-location {
  display: flex;
  align-items: center;
  background-color: #CFE3E2;
  color: #02757F !important;
  font-weight: 500;
  border-radius: 10px;
  padding: 10px;
  width: auto;
  gap: 15px;
  margin-bottom: 1em;
  margin-top: 1em;
}
.page-template-page-panels-v2 .site-header .project-location img {
  max-height: 25px;
}

.call_to_action .content h2:last-child {
  margin-bottom: 0;
}

.page-template-page-panels-v2 .single-resource * {
  color: #fff !important;
}

.page-template-page-panels-v2 .two_column_content .content-left img:not(:nth-of-type(1)) {
  border-radius: 0 !important;
}

.single-tile .content * {
  color: #fff !important;
}

.search .badge span, .search .fullwidth-box h4 span, .fullwidth-box .search h4 span {
  color: #fff !important;
}

.two_column_content .content-right-below {
  background-color: #fff;
  border-radius: 25px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.two_column_content .content-right-below p {
  margin: 0;
}

.page-template-page-panels-v2 textarea {
  color: #02757F !important;
}

.countup-columns-wrapper.container {
  display: flex;
  gap: 30px;
  align-items: stretch;
  justify-content: space-between;
}
.countup-columns-wrapper.container > * {
  flex: 1;
  background-color: #CFE3E2;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.countup-columns-wrapper.container .countup-main {
  font-size: 3em;
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.countup-columns-wrapper.container .wysiwyg-footer p {
  margin: 0;
}

.container.project-overview-top, .project-overview-bottom .container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.container.project-overview-top h2, .container.project-overview-top h3, .project-overview-bottom .container h2, .project-overview-bottom .container h3 {
  margin-top: 0;
  text-transform: uppercase;
}

.project-overview-top-right, .project-overview-bottom-right {
  width: 40%;
}

.project-overview-top-left, .project-overview-bottom-left {
  width: 60%;
}

.project-details-section {
  background-color: #02757F;
}
.project-details-section * {
  color: #fff;
}

.project-detail-item .detail-icon {
  background-color: transparent;
}

.project-details-section {
  background-color: #02757F;
  border-radius: 20px;
  padding: 30px;
}

.project-detail-item p {
  margin: 0;
}

.page-template-page-panels-v2 .project-detail-item, .page-template-page-panels-v2 .detail-icon {
  align-items: flex-start;
}

.page-template-page-panels-v2 .detail-icon {
  width: 25px;
  height: 40px;
  min-width: 25px;
}

.current-status-section {
  margin-top: 2.5em !important;
  display: block;
}

.animated-progress-wrapper {
  margin-top: 20px;
}
.animated-progress-wrapper .progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.animated-progress-wrapper .progress-info .progress-label {
  font-size: 1.1em;
  font-weight: 500;
  color: #02757F;
}
.animated-progress-wrapper .progress-info .progress-percentage {
  font-size: 1.1em;
  font-weight: 600;
  color: #02757F;
}
.animated-progress-wrapper .animated-progress-bar .progress-bar-track {
  width: 100%;
  height: 12px;
  background-color: #E5E7EB;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.animated-progress-wrapper .animated-progress-bar .progress-bar-track .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #02757F 0%, #4ECDC4 100%);
  border-radius: 6px;
  width: 0%;
  transition: width 2s ease-out;
  position: relative;
}
.animated-progress-wrapper .animated-progress-bar .progress-bar-track .progress-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.progress-info * {
  font-size: 14px !important;
}

.countup-boxes-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 2em 0;
}
.countup-boxes-wrapper > * {
  flex: 1;
  border-radius: 20px;
  background-color: #F3B6AE;
  padding: 20px;
}

.countup-box-item .countup-main {
  font-weight: 600;
  font-size: 2em;
  margin-top: 0.33em;
}

.countup-box-item p {
  margin: 0;
}

.measurements-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.measurement-item {
  border: 1px solid teal;
  border-radius: 20px;
  padding: 7.5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.measurement-item p {
  margin: 0;
}
.measurement-item .measurement-value {
  font-size: 1.5em;
  font-weight: 600;
  display: flex;
  justify-self: flex-end;
  align-items: center;
}

.page-id-8813 #panel-3.text_with_image {
  background-color: rgba(207, 227, 226, 0.27);
}

.benefits-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: stretch;
}

.impact-and-benefits .benefit-content ul li::before {
  color: #fff;
}

.benefit-content h3 {
  margin-top: 0;
  font-size: 1.2em;
}

.benefit-item {
  background-color: #02757F;
  border-radius: 25px;
  padding: 30px;
}
.benefit-item p {
  margin: 0;
}
.benefit-item * {
  color: #fff;
}

.page-template-page-panels-v2 .site-header .project-location {
  background-color: teal !important;
  color: #fff !important;
  padding: 3px 15px !important;
  border-radius: 50px !important;
}
.page-template-page-panels-v2 .site-header .project-location * {
  color: #fff !important;
}

.project-location img {
  filter: brightness(1000);
}

.site-header .project-badge {
  background-color: #CFE3E2;
  padding: 5px 15px !important;
  border-radius: 50px !important;
  color: #02757F !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.project-meta-badges {
  display: flex;
  gap: 20px;
  margin: 0 0 1.5em;
}

.project-subheader {
  font-weight: 500;
  max-width: 600px;
}

body.page-template-page-panels-v2.parent-pageid-8807:not(.home) .site-header {
  min-height: 35em !important;
}

.page-template-page-panels-v2 .content-right-below h5 a, .page-template-page-panels-v2 .content-right-below .nav-links > div a {
  background-color: #CFE3E2;
  color: #02757F !important;
}
.page-template-page-panels-v2 .content-right-below h5 a:hover, .page-template-page-panels-v2 .content-right-below .nav-links > div a:hover {
  filter: brightness(1.1);
}

.content-right-below img {
  transition: all linear 0.175s;
}

.content-right-below img:hover {
  transform: scale(1.025);
  filter: brightness(2);
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=range], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color], textarea {
  padding: 12px;
  width: 100%;
  min-height: 50px;
}

#close-form * {
  color: #fff;
}

.nf-form-content .list-select-wrap .nf-field-element > div, .nf-form-content input:not([type=button]), .nf-form-content textarea, input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=range], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color], textarea {
  font-family: "Garet", sans-serif;
}

.BambooHR-ATS-board h2 {
  text-transform: uppercase;
  font-weight: 500 !important;
  line-height: 1.25;
  font-size: 2.441em !important;
  color: #02757F !important;
}

.BambooHR-ATS-Department-List {
  font-size: 16px !important;
}

.BambooHR-ATS-Department-Header {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
  margin: 0.5em 0.75em;
}

.BambooHR-ATS-Jobs-List li {
  padding: 10px;
}

.BambooHR-ATS-Jobs-List li:nth-child(2n) {
  background-color: #eee;
}

.page-template-page-panels-v2 .nf-form-content button, .page-template-page-panels-v2 .nf-form-content input[type=button], .page-template-page-panels-v2 .nf-form-content input[type=submit],
.page-template-page-panels-v2 button, .page-template-page-panels-v2 .nav-links > div > a, .page-template-page-panels-v2 input[type=button], .page-template-page-panels-v2 input[type=reset], .page-template-page-panels-v2 input[type=submit] {
  background: #CFE3E2;
  border: 0;
  color: #02757F;
  transition: all 0.5s;
  font-family: "Garet", sans-serif;
  border-radius: 50px;
  padding: 10px 20px;
  height: 50px;
  cursor: pointer;
}
.page-template-page-panels-v2 .nf-form-content button:hover, .page-template-page-panels-v2 .nf-form-content input[type=button]:hover, .page-template-page-panels-v2 .nf-form-content input[type=submit]:hover,
.page-template-page-panels-v2 button:hover, .page-template-page-panels-v2 .nav-links > div > a:hover, .page-template-page-panels-v2 input[type=button]:hover, .page-template-page-panels-v2 input[type=reset]:hover, .page-template-page-panels-v2 input[type=submit]:hover {
  filter: brightness(1.1) !important;
  opacity: 1 !important;
  background: #CFE3E2 !important;
  color: #02757F !important;
}

@media screen and (max-width: 900px) and (min-width: 769px) {
  #primary-menu li:not(.fa-search) a {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 900px) {
  .countup-columns-wrapper.container {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
  }
  .container.project-overview-top, .project-overview-bottom .container {
    flex-direction: column;
    gap: 20px;
  }
  .project-overview-top-left, .project-overview-bottom-left {
    width: 100%;
  }
  .project-overview-top-right, .project-overview-bottom-right {
    width: 100%;
  }
  .project-overview-main-content p:last-child {
    margin-bottom: 0;
  }
  .countup-boxes-wrapper {
    margin-bottom: 0;
  }
  .benefits-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .benefit-item {
    padding: 20px;
  }
  .project-details-section {
    padding: 20px;
  }
  .countup-columns-wrapper.container > * {
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .countup-columns-wrapper.container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .project-meta-badges {
    flex-direction: column;
    gap: 5px;
  }
  .page-template-page-panels-v2 h1 {
    font-size: 2.75em;
  }
  .countup-boxes-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
