/* ==========================================================================
   UD Theme — Custom Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Web Fonts
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: "DiMare-Regular";
  src: url("../fonts/692dccfed85d7dd93b049997_DiMare%20Regular%20Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Minion Pro";
  src: url("../fonts/692dca9eb3d8e22c67af4a6f_Minion%20Variable%20Concept%20Italic.otf") format("opentype");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "GT Pressura Pro Bold";
  src: url("../fonts/692dccb6b7364ddeb70998c1_GT-Pressura-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    --ud-text-color: #101010;
    --ud-link-color: #030303;
    --ud-heading-color: #030303;
    --ud-accent-color: #116f9a;
    --ud-accent-hover: #383f47;
    --ud-font-size: 16px;
    --ud-font-family: 'Instrument Sans', sans-serif;
    --ud-container-width: 1250px;
    --ud-gutter: 15px;
    --ud-footer-bg: #034767;
    --ud-footer-text: #ecf0f1;
}

/* --------------------------------------------------------------------------
   3. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: var(--ud-font-family);
    font-weight: 400;
    font-style: normal;
    font-size: var(--ud-font-size);
    padding: 0;
    margin: 0;
    color: var(--ud-text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "GT Pressura Pro Bold", Arial, sans-serif;
    font-weight: normal;
    color: var(--ud-heading-color);
    line-height: 1.2;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span{
    font-family: "DiMare-Regular", Arial, sans-serif;
    font-weight: 400;
}
h1 span.minion, h2 span.minion, h3 span.minion, h4 span.minion, h5 span.minion, h6 span.minion{
    font-family: "Minion Pro", Arial, sans-serif;
    font-weight: 400;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: var(--ud-heading-color);
    text-decoration: none;
}

h1 a:hover, h2 a:hover, h3 a:hover,
h4 a:hover, h5 a:hover, h6 a:hover {
    color: var(--ud-accent-color);
}

a {
    color: var(--ud-link-color);
    transition: color 0.3s ease;
}
.single .main-wrapper a,
.section_benefits_features-list-section-for-each.sus_container a,
.elementor .article-bottom a,
.elementor .new_section a{
	text-decoration: underline;
}
.blocknewsdetails a {
    color: #3060bf !important;
    text-decoration: underline ! Important;
}
.landing-block a {
    color: #3060bf !important;
    text-decoration: underline ! Important;
}

a:hover {
    color: var(--ud-accent-color);
}

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

/* --------------------------------------------------------------------------
   4. Forms
   -------------------------------------------------------------------------- */
input,
textarea,
select,
button {
    font-family: var(--ud-font-family);
    font-size: var(--ud-font-size);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus {
    border-color: var(--ud-accent-color);
    outline: none;
}

input[type="submit"],
button[type="submit"] {
    background: var(--ud-accent-color);
    border: 0;
    color: #fff;
    font-family: var(--ud-font-family);
    font-size: var(--ud-font-size);
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background: var(--ud-accent-hover);
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border: none;
    border-top: 1px solid #eee;
    margin: 2em 0;
}

/* --------------------------------------------------------------------------
   5. Layout — Container & Grid
   -------------------------------------------------------------------------- */
.container {
    width: var(--ud-container-width);
    max-width: 100%;
    margin: 0 auto;
    padding-left: var(--ud-gutter);
    padding-right: var(--ud-gutter);
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--ud-gutter));
    margin-right: calc(-1 * var(--ud-gutter));
}

/* Column shared styles */
[class*="col-sm-"] {
    padding-left: var(--ud-gutter);
    padding-right: var(--ud-gutter);
    width: 100%; /* mobile-first: full width */
}

@media (min-width: 576px) {
    .col-sm-1  { width: 8.3333333333%; }
    .col-sm-2  { width: 16.6666666667%; }
    .col-sm-3  { width: 25%; }
    .col-sm-4  { width: 33.3333333333%; }
    .col-sm-5  { width: 41.6666666667%; }
    .col-sm-6  { width: 50%; }
    .col-sm-7  { width: 58.3333333333%; }
    .col-sm-8  { width: 66.6666666667%; }
    .col-sm-9  { width: 75%; }
    .col-sm-10 { width: 83.3333333333%; }
    .col-sm-11 { width: 91.6666666667%; }
    .col-sm-12 { width: 100%; }
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
header.masthead {
    z-index: 100;
    position: relative;
    background: #fff;
    margin: 0 10px;
    margin-top: 43px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

header.masthead.sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header.masthead .col-sm-3,
header.masthead .col-sm-9 {
    padding: 0;
    display: flex;
    align-items: center;
}

header.masthead .col-sm-9 {
    justify-content: flex-end;
}

.main-logo img {
    max-width: 249px;
    height: auto;
}

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 3px;
    background-color: var(--ud-heading-color);
    margin: 5px 0;
    transition: 0.3s ease;
}

.mobile-menu-toggle.active .bar1 {
    transform: rotate(-45deg) translate(-6px, 5px);
}

.mobile-menu-toggle.active .bar2 {
    opacity: 0;
}

.mobile-menu-toggle.active .bar3 {
    transform: rotate(45deg) translate(-6px, -5px);
}

ul.menu {
    margin: 0;
    padding: 0;
    text-align: right;
    list-style: none;
}

ul.menu > li {
    display: inline-block;
    position: relative;
    padding-left: 0px;
}

ul.menu > li > a {
    font-family: var(--ud-font-family);
    color: #034767;
    padding: 15px 12px;
    display: inline-block;
    font-weight: 400;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: .5rem 1rem;
    white-space: nowrap;
    font-weight: 500;
}
ul.menu li.menu-item-has-children > a {
    background: transparent url(../images/chevron-down.svg) no-repeat;
    background-size: 16px;
    background-position: center right;
    padding-right: 25px;
}

ul.menu > li.menu-btn > a {
    background: var(--ud-link-color);
    color: #fff;
    border-radius: 4px;
}

ul.menu > li.menu-btn > a:hover {
    background: var(--ud-accent-hover);
}

/* Submenus */
.menu .sub-menu {
    position: absolute;
    display: none;
    color: #fff;
    text-align: left;
    padding: 0;
    margin: 0;
    list-style-type: none;
    min-width: 220px;
    z-index: 200;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
    background-color: rgb(255, 255, 255);
    border-radius: 9px;
    padding: 15px;
}

.menu li:hover > .sub-menu {
    display: block;
}

.menu .sub-menu li {
    position: relative;
}
.menu .sub-menu li a {
    padding: 10px 10px;
    display: block;
    color: rgb(34, 34, 34);
    transition: background 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    border-radius: 16px;
}
.menu .sub-menu li a:hover{
    background-color: #f0f0f0;
}

.menu .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

/* --------------------------------------------------------------------------
   8. Header Banner (inner pages)
   -------------------------------------------------------------------------- */
#headerbanner {
    background: linear-gradient(180deg, #116F9A 0%, #034767 100%) !important;
    margin: 0 10px;
    margin-top: 0;
    padding: 80px 0;
    position: relative;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}


#headerbanner .container {
    position: relative;
    z-index: 1;
}

#headerbanner h1 {
    color: #fff;
    margin: 0;
    font-family: "Hanken Grotesk", sans-serif !important;
    text-align: left;
    font-size: 3em;
}

#headerbanner h1 span {
    display: block;
    font-size: 0.5em;
    font-weight: 300;
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   9. Main Content
   -------------------------------------------------------------------------- */
#main {
    min-height: 50vh;
}

#main.bkpg {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* 
#main ul li {
    color: #496285;
    font-weight: 700;
    list-style-type: none;
}

#main ul li::before {
    content: "\2022";
    color: var(--ud-accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
} */

/* --------------------------------------------------------------------------
   10. Article / Entry Styles
   -------------------------------------------------------------------------- */
article {
    margin-bottom: 2em;
}

.entry-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 1.5em;
    display: none;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-meta a {
    color: var(--ud-link-color);
}

.entry-footer {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #888;
}

.post-thumbnail {
    margin-bottom: 1.5em;
}

.post-thumbnail img {
    border-radius: 4px;
}

.page-links {
    margin-top: 1.5em;
    font-weight: 600;
}

/* Post Navigation */
.post-navigation {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid #eee;
}

.nav-subtitle {
    display: block;
    font-size: 0.85em;
    color: #888;
    text-transform: uppercase;
}

.nav-title {
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. Archive / Resource Cards
   -------------------------------------------------------------------------- */
.resource-casestudy {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-casestudy:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.resource-casestudy img {
    width: 100%;
    height: auto;
    display: block;
}

.resource-holder {
    padding: 20px;
}

.resource-title {
    font-size: 1.2em;
    margin: 0 0 10px;
}

.resource-title a {
    color: var(--ud-heading-color);
}

.resource-title a:hover {
    color: var(--ud-accent-color);
}

.resource-excerpt {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.resource-more {
    display: inline-block;
    color: var(--ud-accent-color);
    font-weight: 600;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.resource-more:hover {
    color: var(--ud-accent-hover);
}

.resource-more span {
    margin-left: 4px;
}

/* --------------------------------------------------------------------------
   12. 404 Page
   -------------------------------------------------------------------------- */
.area404 {
    text-align: center;
    padding: 60px 20px;
}

.title404 {
    font-size: 120px;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--ud-accent-color);
    font-weight: 700;
}

.area404 h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.area404 p {
    color: #666;
    margin-bottom: 25px;
}

.btn-404 {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--ud-accent-color);
    margin: 0 10px;
    transition: all 0.3s ease;
    background: var(--ud-accent-color);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-404:hover {
    background: var(--ud-accent-hover);
    border-color: var(--ud-accent-hover);
    color: #fff;
}

.search-404 {
    margin-top: 30px;
}

.search-404 p {
    margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   13. Search Form
   -------------------------------------------------------------------------- */
.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 8px;
}

.search-form label {
    flex: 1;
}

.search-form .search-field {
    width: 100%;
    margin-bottom: 0;
}

.search-form .search-submit {
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   14. No Results
   -------------------------------------------------------------------------- */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

/* --------------------------------------------------------------------------
   15. Comments
   -------------------------------------------------------------------------- */
.comments-area {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid #eee;
}

.comments-title {
    margin-bottom: 1.5em;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #f0f0f0;
}

.no-comments {
    color: #888;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.main-footer {
    background: var(--ud-footer-bg);
    color: var(--ud-footer-text);
    padding: 50px 0 30px;
    max-width: 99%;
    margin: 0 auto;
    margin-top: 50px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.main-footer h2.widgettitle {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.main-footer a {
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
	font-size: 14px;
}

.main-footer a:hover {
    color: #fff;
}

.main-footer .wp-block-image{
    margin-left: 0;
}
.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #fff;
    text-align: center;
    font-size: 0.9em;
    color: #fff;
	margin-left: calc(-1 * var(--ud-gutter));
	margin-right: calc(-1 * var(--ud-gutter));
}
.footer-sidebar-2{
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    padding: 0;
	align-items: center;
}
.footer-sidebar-3{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}
.footer-sidebar-3 p,
.footer-sidebar-4 p{
    margin-bottom: 0;
    margin-top: 0;
    color: #fff;
}
.footer-sidebar-4{
    display: flex;
    justify-content: flex-end;
    gap: 40px;
	padding: 0;
}
.footer-sidebar-4 a{
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   17. Pagination
   -------------------------------------------------------------------------- */
.pagination,
.wp-pagenavi {
    text-align: center;
    padding: 30px 0;
}

.pagination .page-numbers,
.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.wp-pagenavi span.current {
    background: var(--ud-accent-color);
    color: #fff;
    border-color: var(--ud-accent-color);
}

/* --------------------------------------------------------------------------
   18. Block Editor Compatibility
   -------------------------------------------------------------------------- */
.alignwide,
.alignfull {
    margin: 0 calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

.wp-block-cover__inner-container {
    max-width: var(--ud-container-width);
    margin: 0 auto;
}

/* Elementor compatibility */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--ud-container-width) !important;
}

/* --------------------------------------------------------------------------
   19. Breadcrumbs
   -------------------------------------------------------------------------- */
#breadcrumbs {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 20px;
}

#breadcrumbs a {
    color: var(--ud-link-color);
}

#breadcrumbs a:hover {
    color: var(--ud-accent-color);
}

/* --------------------------------------------------------------------------
   20. Screen Reader Text (accessibility)
   -------------------------------------------------------------------------- */
.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;
    width: 1px;
    word-wrap: normal !important;
}


/* --------------------------------------------------------------------------
   CUSTOM CSS HERE
   -------------------------------------------------------------------------- */
.stickey-bar {
    z-index: 9999;
    background-color: rgb(3, 71, 103);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFDF3E 0%, #ECAC00 100%);
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.20);
}
.text-color-white.stickey {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}
.gc-head-desc.custom-banner.banner_home_paregraph.stickey {
    color: rgb(41, 41, 41);
    text-align: center;
    font-size: 14px;
    margin: 0;
}
#wpadminbar{
    display: none !important;
}
html{
    margin-top: 0 !important;
}
.by-numbers{
    margin:auto;
    padding:18px;
    border-radius:8px;
	background-color: #37bdf233;
    font-family:Arial,sans-serif;
	padding-bottom: 54px;
}
.by-numbers h2{
    margin:0 0 30px;
    color:#fff;
    font-size:30px;
    font-weight:700;
    line-height:1.1;
}

.numbers-grid{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.number-card{
    background:rgba(255,255,255,.12);
    border-radius:8px;
    padding:20px 30px;
}

.number-card h3{
    margin:15px 0 20px;
    color:#fff;
	font-size: 40px;
    font-family: "Instrument Sans", sans-serif !important;
    font-weight:700;
    line-height:1;
}

.number-card p{
    margin:0;
    color:#fff;
    opacity:.95;
	font-size: 1rem;
    line-height: 1.5;
	font-family: "Instrument Sans", sans-serif !important;
}
.impact-posts{
    display:flex;
    flex-direction:column;
    gap: 16px;
}

.impact-post{
    display:flex;
    gap:22px;
    padding:20px;
    background:#0d6d98;
	background-color: #37bdf233;
    border-radius:18px;
    align-items:center;
	margin-bottom: 0;
	transition: transform .2s;
}
.impact-post:hover{
	transform: translate(0, -8px);
}

.impact-thumb{
	width: 270px;
	flex-shrink: 0;
	display: block;
	height: 270px;
	border-radius: 16px;
	overflow: hidden;
}

.impact-thumb img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:14px;
    display:block;
}

.impact-content{
    flex:1;
}

.impact-content h3{
    margin:0 0 12px;
    font-size:22px;
    font-weight:700;
    line-height:1.15;
}

.impact-content h3 a{
    color:#fff;
    text-decoration:none;
}

.impact-excerpt{
	color: #fff;
	margin-bottom: 28px;
	text-align: left;
	font-size: 16px;
	line-height: 120%;
	font-family: Hanken Grotesk, sans-serif;
}

.impact-readmore{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	text-decoration: none;
	transition: .25s;
	color: #fff;
	text-align: center;
	margin-top: 0;
	padding-right: 8px;
	font-family: Hanken Grotesk, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

.impact-readmore:hover{
    gap:14px;
}

.cta-block {
  background-color: #e6edf0;
  border-radius: 16px;
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
}

.cta-block.banner {
  text-align: left;
  max-width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cta-block.mobile.updated {
  max-width: 1000px;
  padding: 50px 40px;
}

.cta-block.mobile.updated.sus_child_container {
  max-width: 1100px;
}

.cta-block.mobile.updated.sus_child_container.bg-none {
  background-color: #e6edf000;
  padding-top: 0;
}

.cta-block.mobile.updated.sus_child_container.bg-none.custom_new-box-style {
  padding-top: 0;
}

.cta-block.mobile.updated.custom-width {
  max-width: 1058px;
}

.cta-block.mobile.updated.custom-width.vta-block-top {
  margin-top: 60px;
  margin-bottom: 60px;
}

.button-65 {
  color: #fff;
  text-align: center;
  background-color: #e49b00;
  border: 0 solid #030303;
  border-radius: 6px;
  padding: .75rem 1.5rem;
  font-family: Hanken Grotesk, sans-serif;
  text-decoration: none;
}

.button-65:hover {
  background-color: #039;
}

.button-65.stb-transparent {
  background-color: #0000;
  border-width: 2px;
  border-color: #fff;
}

.button-65.stb-transparent.stay-informed-btns {
  color: #034767;
  -webkit-text-stroke-color: #034767;
  background-color: #0000;
  border-color: #034767;
  margin-right: 10px;
  display: inline-block;
}

.button-65.stb-transparent.stay-informed-btns.btn-main {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  display: flex;
}

.button-65.stb-transparent.stay-informed-btns.btn-main.dark {
  color: #fff;
  background-color: #034767;
}

.button-65.stb-transparent.stay-informed-btns.text-same {
  font-size: 22px;
}

.button-group.stb-buttons {
  flex-flow: row;
  margin-top: 20px;
  display: block;
	text-align: center;
}

.div-block-90 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.button-65 {
  color: #fff;
  text-align: center;
  background-color: #e49b00;
  border: 0 solid #030303;
  border-radius: 6px;
  padding: .75rem 1.5rem;
  font-family: Hanken Grotesk, sans-serif;
  text-decoration: none;
}

.button-65:hover {
  background-color: #039;
}

.button-65.stb-transparent {
  background-color: #0000;
  border-width: 2px;
  border-color: #fff;
}

.button-65.stb-transparent.stay-informed-btns {
  color: #034767;
  -webkit-text-stroke-color: #034767;
  background-color: #0000;
  border-color: #034767;
  margin-right: 10px;
}

.button-65.stb-transparent.stay-informed-btns.btn-main {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  display: flex;
}

.button-65.stb-transparent.stay-informed-btns.btn-main.dark {
  color: #fff;
  background-color: #034767;
}

.button-65.stb-transparent.stay-informed-btns.text-same {
  font-size: 22px;
}


.paragraph-41 {
  text-align: left;
  max-width: 877px;
  margin-top: 20px;
  margin-bottom: 2rem;
  font-size: 16px;
  font-weight: 500;
}

.paragraph-41.cta-stayinformed {
  color: #034767;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 0;
  font-family: Hanken Grotesk, sans-serif;
  font-size: 16px;
}

.paragraph-41.cta-stayinformed.width-none-icon {
  border: none;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  text-decoration: none;
}

.paragraph-41.cta-stayinformed.width-none-icon.custom_link_link {
  font-size: 20px;
}

.paragraph-41.cta-stayinformed.custom_para {
  font-size: 22px;
}

.heading-99 {
  text-align: left;
  color: #039;
  font-size: 40px;
  font-weight: 700;
}

.heading-99.faq-stb {
  text-align: center;
}

.heading-99.faq-stb.new-head-color.stay-informed {
  color:#034767;
  font-family: GT Pressura Pro Bold, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.heading-99.faq-stb.new-head-color.stay-informed.heading_link_link {
  font-size: 40px;
}

.article-bottom {
  background-color: #dbe7ff;
  border-radius: 10px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 23px 20px;
  font-size: 16px;
	margin-top: 50px;
}

.article-bottom.main {
  max-width: 1000px;
  margin-bottom: 0;
}

.article-bottom.coast-bottom-last {
  display: block;
}

h4.article-bottom-heading {
	font-family: Hanken Grotesk, sans-serif !important;
	font-size: 18px;
	line-height: 36px;
	color:#030303;
	font-weight: normal;
	text-align: center;
}

body.single h4.article-bottom-heading {
	text-align: left;
}
.image-full img{
    width: 100%;
}
.pas-2nd-section img,
.ge_block img{
    border-radius: 16px !important;
}
  
.page-id-700367 #headerbanner,
.postid-1163 #headerbanner,
.page-id-700578 #headerbanner,
.page-id-700651 #headerbanner,
.page-id-700644 #headerbanner,
.page-id-700635 #headerbanner,
.page-id-700623 #headerbanner,
.page-id-700607 #headerbanner,
.postid-700602 #headerbanner,
.page-id-700596 #headerbanner,
.page-id-700316 #headerbanner,
.page-id-700336 #headerbanner,
.page-id-700262 #headerbanner,
.page-id-700305 #headerbanner,
.page-id-700346 #headerbanner,
.page-id-700276 #headerbanner,
.page-id-700295 #headerbanner{
    display: none;
}
.postid-1163 #main.bkpg,
.page-id-700578 #main.bkpg,
.page-id-700651 #main.bkpg,
.page-id-700644 #main.bkpg,
.page-id-700635 #main.bkpg,
.page-id-700623 #main.bkpg,
.page-id-700607 #main.bkpg,
.postid-700602 #main.bkpg,
.page-id-700596 #main.bkpg,
.page-id-700316 #main.bkpg,
.page-id-700336 #main.bkpg,
.page-id-700262 #main.bkpg,
.page-id-700305 #main.bkpg,
.page-id-700346 #main.bkpg,
.page-id-700276 #main.bkpg,
.page-id-700295 #main.bkpg{
    padding-top: 0;
}

.page-id-700346 #main.bkpg{
    padding-bottom: 0;
	
}

.section_testimonial1 .logo_icon_3col{
    max-height: 50px;
    height: 50px;
}
.videohover{
	transition: all 0.3s ease;
}
.videohover:hover{	
	transform: scale(1.05);
}
.testimonial_3col{
	background-color: #bad5e2 !important;
}
.container_logo3col{
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 200px;
}
.sub_head_3col{
	font-weight: normal !important;
} 
.logo_title_sub{
	align-items: center;
}
.testimonial1_client{
	display: flex !important;
    width: 328px !important;
}
._3_col_text p{
	font-size: 16px;
}

._3_col_text {
    max-height: 95px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

._3_col_text.testimonial-expanded {
    max-height: 1000px;
}
.text-right,
.text-right *{
	text-align: right !important;
}
.text-block-3, .button_3col {
    background-color: #e49b00 !important;
}

.parent-pageid-700194 #main.bkpg,
.page-id-700194 #main.bkpg{padding-top: 0;}

.parent-pageid-700194 .section_header50.ticker-bg,
.page-id-700194 .section_header50.ticker-bg{margin-top:10px;}

.parent-pageid-700194 .main-wrapper,
.page-id-700194 .main-wrapper{padding-left: 0;padding-right: 0;}
.page-id-700194 .ticker-head::after{content:"+";}

.parent-pageid-700194 ._3_col_head-supporters,
.page-id-700194 ._3_col_head-supporters{color: #034767;}

.page-id-700262 .section_header50.text-color-white{width: 98vw; margin-left: calc((100% - 98vw) / 2);}
body.single #main.bkpg{padding-bottom: 0;}
body.single .main-footer{padding-top: 0;margin-top: 0;}
body.single article{margin-bottom:0;padding-bottom:0;}
body.single #main img{border-radius: 16px;}
.cleaning-mars-inner-author.coast-to-coast-center.katie-head-top._22._2-col { column-gap: 20px; row-gap: 20px; justify-content: center; align-items: flex-end;}
.elementor img.cleaning-mars-inner-author-right-img{object-fit: cover;object-position: 50% 15%;width: 360px;height: 360px;border-radius: 16px;}
.elementor img.cleaning-mars-inner-author-right-img.freight { object-position: 50% 50%;}
body.single .elementor a{text-decoration: underline;}
.w-button{text-decoration: none !important;}
.a-link a {color: #3060bf !important;}
.postid-1182 #headerbanner {top: -30px;}
.blocknewsdetails a, .winning-main-section a {color: #3060bf !important;text-decoration: underline ! Important;}





 
body.postid-700125 .paragraph-47.cta-stayinformed.width-none-icon, 
body.postid-1 .paragraph-47.cta-stayinformed.width-none-icon,
body.postid-700120 .paragraph-47.cta-stayinformed.width-none-icon,
body.postid-700124 .paragraph-47.cta-stayinformed.width-none-icon,
body.postid-700123 .paragraph-47.cta-stayinformed.width-none-icon,
body.postid-5 .paragraph-47.cta-stayinformed.width-none-icon,
body.postid-700122 .paragraph-47.cta-stayinformed.width-none-icon{border:0 !important;}

@media only screen and (min-width:1440px){
	.parent-pageid-700194 #headerbanner,
	.page-id-700194 #headerbanner{max-width: 1420px;margin: 0 auto;}	
	
	.parent-pageid-700194 .e-con>.e-con-inner,
	.page-id-700194 .e-con>.e-con-inner{max-width: 1420px;}
	
	
	.page-id-700346 .section_header50.text-color-white{max-width: 1420px;margin: 0 auto;}
	.main-footer .container{max-width: 1400px;width: 1400px;}
	
	body.single  #headerbanner .container{width: 1400px;max-width: 1400px;padding: 0;}
	
	body.single #main .container{width: 1420px;max-width: 1420px;padding: 0;}
	body.single .entry-content > .elementor > .elementor-element > .e-con-inner{padding: 0;margin: 0;width: 100%;max-width: 100%;}
	body.single .main-wrapper{padding: 0;margin: 0;}
	body.single .entry-content > .elementor > .elementor-element{padding: 0;}
	body.single .pading-bottom-new { max-width: 1250px; }

}

@media only screen and (min-width:1366px){
	body.single .pading-bottom-new { max-width: 1250px; }
	
}

@media(max-width:1440px){
	.page-id-700181 .new_section.custom_class.new_class_custom{
		max-width: 95%;
	}
}

@media(max-width:991px){

    .impact-post{
        flex-direction:column;
        align-items:flex-start;
    }

    .impact-thumb{
        width:100%;
    }

    .impact-thumb img{
        aspect-ratio:16/9;
    }

    .impact-content h3{
        font-size:28px;
    }

    .impact-excerpt{
        font-size:16px;
    }

}

@media (max-width:767px){

    .by-numbers{
        max-width:100%;
        padding:16px;
    }

    .by-numbers h2{
        font-size:24px;
    }

    .number-card{
        padding:18px;
    }

    .number-card h3{
        font-size:32px;
    }

    .number-card p{
        font-size:15px;
    }

}



/* --------------------------------------------------------------------------
   21. Responsive — Tablet
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 1100px) {
    .container {
        width: 95%;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }
    .stickey-bar{
        position: relative !important;
    }
    header.masthead{
        margin-top: 0;
    }
    .masthead .row{
        flex-wrap: nowrap;
    }
    body {
        margin: 0 !important;
    }
}

@media only screen and (max-width: 768px) {
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    header.masthead .col-sm-9 {
        position: relative;
    }

    /* Mobile navigation */
    .main-navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 4px 4px;
        z-index: 200;
        width: 300px;
    }

    .main-navigation.is-open {
        display: block;
    }

    ul.menu {
        text-align: left;
    }

    ul.menu > li {
        display: block;
    }

    ul.menu > li > a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu .sub-menu {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        margin: 0;
        border-radius: 0;
    }

    .menu li:hover > .sub-menu {
        display: block;
    }

    /* Header banner */
    #headerbanner {
        padding: 50px 0;
    }

    #headerbanner h1 {
        font-size: 32px;
    }

    /* Archive grid */
    [class*="col-sm-"] {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   22. Responsive — Mobile
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 580px) {
    .btn-404 {
        display: block;
        margin-bottom: 15px;
    }

    .title404 {
        font-size: 80px;
    }

    .search-form {
        flex-direction: column;
    }

    .area404 {
        padding: 40px 15px;
    }
    .article-bottom.main,
    .cta-block.mobile.updated,
    .news-section{
        max-width: 95%;
        margin: 0 auto;
    }
    .impact-thumb{
        height: auto;
    }
    .button-group.stb-buttons{
        flex-flow: row;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .footer-sidebar-2,
    .footer-sidebar-3,
    .footer-sidebar-4{
        display: flex;
        justify-content: flex-end;
        gap: 0;
        padding: 0;
        flex-direction: column;
        align-items: center;
    }
    .main-footer .wp-block-image {
        margin: 0 auto;
        text-align: center;
    }
    .article-bottom.main{
        margin-top: 30px;
    }
	header.masthead .col-sm-9 {
        position: initial;
    }
	.main-navigation{
		width: 100vw;
        right: 0;
		height: 100vh;
	}
	header.masthead{
		margin: 0;
	}
	ul.menu > li > a{
		display: inline-block;
		padding: 12px 20px;
		border-bottom: 1px solid #f0f0f0;
		border: 0;
	}
	.upns-votervoice-embed,
	.code-embed-8{
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	.newsroom-page .category-filter-menu{
		flex-direction: column;
	}
	
	
}