/* ====== FONTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --clr--forest: 0, 112, 74; /* #00704A */
  --clr--green: 46, 157, 72; /* #2E9D48*/
  --clr--gold: 255, 194, 14; /* #FFC20E */
  --clr--black: 0, 0, 0; /* #000000 */
  --clr--white: 255, 255, 255; /* #ffffff */

  --fnt--inter: "Inter", sans-serif;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-track {
  background: rgba(var(--clr--black), .1);
  box-shadow: inset 2px 2px 3px rgba(rgb(var(--clr--black)), 0.4);
}

::-webkit-scrollbar-thumb {
  background: rgb(var(--clr--forest));
  background: linear-gradient(0deg,rgba(var(--clr--green), 1) 0%, rgba(var(--clr--forest), 1) 100%);
  box-shadow: inset 0px 0px 8px rgba(var(--clr--black), 0.4);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

html,
body {
  color: rgb(var(--clr--black));
  font-size: clamp(16px, 1vw, 22px);;
  font-weight: 400;
  font-family: var(--fnt--inter);
  line-height: 1.2;
  background: rgb(var(--clr--white));
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 5px 0;
  line-height: 1;
  font-weight: 700;
}

h1 {
  font-size: clamp(32px, 3vw, 82px);
}

h2 {
  font-size: clamp(24px, 1.8vw, 36px);
}

h3 {
  font-size: clamp(21px, 1.2vw, 36px);
}

h4 {
  font-size: clamp(18px, 1.1vw, 27px);
}

h5 {
  font-size: clamp(17px, 0.9vw, 23px);
}

h6 {
  line-height: 1.3;
}

p {
  font-size: clamp(16px, 1.1vw, 36px);
  line-height: 1.3;
}

p:nth-last-of-type(1) {
  margin-bottom: 0;
}

p:has(+ ul),
p:has(+ ol) {
  margin-bottom: .6rem !important;
}

ul, ol {
  font-size: clamp(16px, 1.1vw, 36px);
  line-height: 1.4;
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
  min-height: 31px;
  padding: 3px 0 3px 45px;
}

.small,
small {
  display: inline-block;
  font-weight: 400;
  line-height: 1.2;
  font-size: 14px !important;
}

a {
  color: currentColor;
}

.desktop {
  display: block !important;
}

.mobile {
  display: none !important;
}

img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  max-width: 100%;
  position: relative;
}

img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(224, 224, 224);
  border: 2px dashed rgb(176, 176, 176);
}

section {
  position: relative;
}

.section-row {
  padding-block: clamp(40px, 4.5vw, 92px);
  position: relative;
}

.titles {
  margin-bottom: 1.75rem;
}

.titles > h1,
.titles > h2 {
  font-size: clamp(36px, 3.2vw, 72px);
  font-weight: 900;
  line-height: 1.1;
}

.titles__highlighter {
  color: rgb(var(--clr--forest));
}

.titles__highlighter_white {
  color: rgb(var(--clr--white));
}

.titles__sub-heading {
  font-size: clamp(16px, 1.3vw, 36px);
  text-transform: unset;
  max-width: 700px;
}

.title-header {
  text-align: center;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.fw100 {
  font-weight: 100;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700,
strong {
  font-weight: 700;
}

.fw900 {
  font-weight: 900;
}

.ls {
  letter-spacing: 1.5px;
}

.italic {
  font-style: italic;
}

.fnt--inter {
  font-family: var(--fnt--inter);
}

.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;
}

/* ====== COLORS ====== */
.clr--forest {
  color: rgb(var(--clr--forest)) !important;
}

.clr--black {
  color: rgb(var(--clr--black)) !important;
}

.clr--white {
  color: rgb(var(--clr--white)) !important;
}

.bgclr--forest {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--forest));
}

.bgclr--black {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--black));
}

.bgclr--white {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--white));
}

/* Input Fields */
.form-control {
  color: rgb(var(--clr--black));
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 400;
  line-height: 1.3;
  min-height: 30px;
  padding: 10px;
  background-color: rgb(var(--clr--white));
  border: 2px solid rgba(var(--clr--black), .3);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

textarea.form-control {
  min-height: 150px;
}

.form-control:disabled {
  background-color: rgb(var(--clr--white), .2);
  opacity: .6;
}

.form-control:focus {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--white));
  border: 2px solid rgb(var(--clr--forest));
  outline: 0;
  box-shadow: none;
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
}

.form-check-input[type=checkbox] {
  box-shadow: inset 0px 3px 6px rgba(var(--clr--black), 0.15);
  border: 1px solid rgba(var(--clr--black), 0.25);
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 2px solid rgb(var(--clr--forest));
  -webkit-text-fill-color: var(--clr--black);
  box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
  -webkit-box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -moz-transition: background-color 5000s ease-in-out 0s;
  -ms-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
}

.invalid-feedback {
  color: rgb(var(--clr--white));
  font-size: 13px;
  /* text-align: center; */
  background-color: rgb(220, 53, 69);
  padding: 5px 10px;
}

.cmm-have-your-say-return-message {
  text-align: center;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
  border: 1px solid transparent;
  display: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.cmm-have-your-say-return-message.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  display: block;
}

.cmm-have-your-say-return-message.error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  display: block;
}

/* ====== BUTTONS ====== */
.btn {
  font-size: clamp(16px, 1vw, 24px);
  font-weight: 700 !important;
  color: rgb(var(--clr--white));
  line-height: 1.1;
  transition: ease-in .4s;
  -webkit-transition: ease-in .4s;
  -moz-transition: ease-in .4s;
  -ms-transition: ease-in .4s;
  -o-transition: ease-in .4s;
  width: fit-content;
  min-width: 200px;
  padding: 10px 30px !important;
  margin: 0 auto;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn:hover,
a:hover {
  text-decoration: none;
}

.btn-large {
  font-size: clamp(18px, 1.4vw, 41px);
  padding: 18px 60px !important;
  position: relative;
  z-index: 9;
}

.primary--btn {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--forest));
  border: 2px solid rgb(var(--clr--forest));
}

.primary--btn:hover,
.primary--btn:active,
.primary--btn:focus-visible {
  color: rgb(var(--clr--forest)) !important;
  background-color: rgb(var(--clr--white)) !important;
  border: 2px solid rgb(var(--clr--forest)) !important;
}

.primary--btn.disabled {
  background-color: rgba(var(--clr--forest), 0.6);
  border-color: rgba(var(--clr--forest), 0.6);
  cursor: not-allowed;
  color: rgb(var(--clr--white));
}

/* Grid laout */
.grid-two,
.grid-three,
.grid-four,
.grid-five {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.grid-two > * {
  width: calc((100% / 2) - 13px);
}

.grid-three > * {
  width: calc((100% / 3) - 17px);
}

.grid-four > * {
  width: calc((100% / 4) - 19px);
}

.grid-five > * {
  width: calc((100% / 5) - 20px);
}

/* OWL CAROUSEL */
.owl-loaded {
  width: 100%;
  position: relative;
}

.owl-stage-outer {
  overflow: hidden;
}

.owl-stage {
  display: flex;
}

.owl-item {
  padding: 50px 0 0;
  vertical-align: top;
  display: flex;
  justify-content: center;
}

.owl-nav {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  font-size: 36px;
  color: rgb(var(--clr--forest));
  font-weight: 700;
  background-color: transparent;
  border: 0;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.owl-nav button.owl-prev {
  left: -50px;
}

.owl-nav button.owl-next {
  right: -50px;
}

.owl-dots {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.owl-dots button.owl-dot {
  width: 15px;
  aspect-ratio: 1 / 1;
  background: rgb(var(--clr--white));
  border: 3px solid rgb(var(--clr--white));
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.owl-dots button.owl-dot.active {
  background: rgba(var(--clr--white), .3);
}

.owl-loaded .disabled {
  display: none;
}

/* CAROUSEL STYLES */
.hero-banner__wrapper_content .owl-item {
  padding: 10px 10px 30px;
}

.hero-banner__wrapper_content button.owl-dot {
  border-width: 2px;
}

.hero-banner__wrapper_content button.owl-dot.active {
  background-color: rgb(var(--clr--forest));
}

.voices-section__carousel,
.hero-banner__wrapper_content {
  position: relative;
  display: flex;
  gap: 25px;
  overflow: hidden;
}

.voices-section__carousel.owl-loaded,
.hero-banner__wrapper_content.owl-loaded {
  display: block;
  overflow: visible;
}

.voices-section__carousel .voices-section__carousel_card,
.hero-banner__wrapper_content .hero-banner__wrapper_content-wrapper {
  position: relative;
}

.voices-section__carousel > .voices-section__carousel_card,
.hero-banner__wrapper_content > .hero-banner__wrapper_content-wrapper {
  position: relative;
  overflow: hidden;
}

.voices-section__carousel .voices-section__carousel_card {
  min-width: calc((100% / 3) - 17px);
}

.hero-banner__wrapper_content .hero-banner__wrapper_content-wrapper {
  min-width: 100%;
}

.voices-section__carousel > .voices-section__carousel_card:before,
.hero-banner__wrapper_content > .hero-banner__wrapper_content-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(237, 237, 237);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

.the-facts__wrapper_facts_carousel .owl-item {
  padding-top: 50px;
}

/* ====== HEADER ====== */
.header {
  width: 100%;
  background-color: rgb(var(--clr--forest));
  padding: 20px 0;
  box-shadow: 0 8px 15px rgba(var(--clr--black), 0.15);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.header__fixed-header {
  background-color: rgb(var(--clr--white));
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.header__logo {
  max-width: 200px;
  padding: 0;
  line-height: 1;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.header__fixed-header .header__logo {
  max-width: 140px;
  padding: 0;
}

.header__logo img {
  width: 100%;
  height: auto;
  position: relative;
}

/* ====== NAVIGATION ====== */
.header__navbar_collapse {
  justify-content: flex-end;
}

.header__navbar {
  justify-content: space-between;
}

.header__navbar--container {
  display: flex;
}

ul#header__navbar_menu,
ul#header__navbar_button {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header__navbar_collapse.collapsing {
  height: unset !important;
}

.menu-item {
  padding: 0;
  background: transparent;
  position: relative;
}

.menu-item a {
  color: rgb(var(--clr--white));
  font-family: var(--fnt--inter);
  font-size: clamp(14px, 1.1vw, 24px);
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  padding: 5px 10px;
  display: block;
  text-align: left;
}
.menu-item a:hover {
  color: rgb(var(--clr--gold));
}
.header__fixed-header .menu-item a {
  font-size: 18px;
}

.menu-item.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  color: rgb(var(--clr--forest));
  position: absolute;
  right: 0;
  top: 22px;
}

/* .menu-item.current-menu-parent > a,
.menu-item.current-menu-item a,
.menu-item:hover a {
  color: rgb(var(--clr--black));
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(var(--clr--black));
  text-decoration-thickness: 2px;
} */

.menu-item.current-menu-parent > a::after,
.menu-item.current-menu-item.menu-item-has-children > a::after,
.menu-item.menu-item-has-children:hover > a::after {
  color: rgb(var(--clr--forest));
}

li.menu-item ul.sub-menu {
  width: 250px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgb(var(--clr--forest));
  border: none;
  position: absolute;
  z-index: 9;
  display: none;
  box-shadow: none;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

li.menu-item:hover ul.sub-menu {
  display: block;

}

li.menu-item ul.sub-menu li a {
  color: rgb(var(--clr--white));
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  text-align: left;
}

li.menu-item ul.sub-menu li a:hover {
  color: rgb(var(--clr--gold));
  background-color: rgba(var(--clr--white), 0.1);
}

.nav-btn a {
  color: rgb(var(--clr--forest)) !important;
  font-weight: 900;
  text-decoration: none;
  background-color: rgb(var(--clr--gold));
  padding: 12px 35px !important;
  margin-left: 15px;
  border: 2px solid rgb(var(--clr--forest));
  text-decoration: none !important;
  transition: ease-in .4s;
  -webkit-transition: ease-in .4s;
  -moz-transition: ease-in .4s;
  -ms-transition: ease-in .4s;
  -o-transition: ease-in .4s;
}

.nav-btn a:hover {
  color: rgb(var(--clr--forest)) !important;
  background-color: rgb(var(--clr--white));
  border: 2px solid rgb(var(--clr--forest));
  text-decoration: none !important;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: rgb(var(--clr--black));
}

.nav-btn iframe {
  margin-left: 15px;
}

/* Social Media and Search Icons - Desktop (default) */
.header__navbar_social-search {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.header__navbar_social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__navbar_social a,
.header__navbar_search a {
  color: rgb(var(--clr--white));
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.header__navbar_social a:hover,
.header__navbar_search a:hover {
  color: rgb(var(--clr--gold));
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.header__navbar_toggler {
  padding: 4px 12px;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header__navbar_toggler:focus {
  box-shadow: unset;
}

.header__navbar_icon {
  background-color: rgb(var(--clr--white));
  width: 26px;
  height: 3px;
  margin: 4px 0;
  display: block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(1),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(1) {
  transform: rotate(45deg) translate(10px, 10px);
  -webkit-transform: rotate(45deg) translate(10px, 10px);
  -moz-transform: rotate(45deg) translate(10px, 10px);
  -ms-transform: rotate(45deg) translate(10px, 10px);
  -o-transform: rotate(45deg) translate(10px, 10px);
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(2),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(2) {
  opacity: 0;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(3),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  -webkit-transform: rotate(-45deg) translate(5px, -6px);
  -moz-transform: rotate(-45deg) translate(5px, -6px);
  -ms-transform: rotate(-45deg) translate(5px, -6px);
  -o-transform: rotate(-45deg) translate(5px, -6px);
}

.header__navbar .header__navbar_toggler.collapsed .header__navbar_icon {
  opacity: 1 !important;
  transform: rotate(0deg) translate(0px, 0px) !important;
  -webkit-transform: rotate(0deg) translate(0px, 0px) !important;
  -moz-transform: rotate(0deg) translate(0px, 0px) !important;
  -ms-transform: rotate(0deg) translate(0px, 0px) !important;
  -o-transform: rotate(0deg) translate(0px, 0px) !important;
}

/* Scrolling Banner */
.rolling-banner {
  background-color: linear-gradient(
    135deg,
    rgba(var(--clr--forest), 0.85),
    rgba(var(--clr--forest-light), 0.65)
  );
  padding-block: 15px;
}

.rolling-banner__scroller {
  max-width: 100%;
}

.rolling-banner__scroller_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 200px;
}

.rolling-banner__scroller[data-animated="true"] {
  overflow: hidden;
}

.rolling-banner__scroller[data-animated="true"] .rolling-banner__scroller_inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 30s forwards linear infinite;
  -webkit-animation: scroll 30s forwards linear infinite;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.rolling-banner__scroller_scroll-item {
  color: rgb(var(--clr--white));
  font-size: 17px;
  font-style: oblique;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("/wp-content/uploads/2025/12/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.1) 65%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  max-width: 80%;
  padding: 4rem 4rem 4rem 8rem;
  color: #fff;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.brand img {
  height: 78px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand small {
  font-weight: 400;
  letter-spacing: 0.3em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

h1 span {
  display: block;
  font-weight: 300;
}



.cta {
  display: inline-block;
  background: #00704A; /* Forest */
  color: #fff;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.cta:hover {
  background: #005a3c;
}


/* Have Your Say */
.share-your-story {
  background: url("/wp-content/uploads/2025/12/baclground-pattern-2.png") no-repeat 0 0 / cover;
}

.share-your-story__wrapper {
  background-color: rgb(var(--clr--white));
  padding: 2rem;
  border: 5px solid rgb(var(--clr--forest));
  display: flex;
  align-items: center;
  gap: 40px;
}

.share-your-story__wrapper_content {
  width: 40%;
}

.share-your-story__wrapper_content * {
  color: rgb(var(--clr--forest));
  font-size: clamp(24px, 2.2vw, 48px);
  font-weight: 900;
  text-align: center;
}

.share-your-story__wrapper_content_title-stripe {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--forest));
  display: block;
  clear: left;
  width: fit-content;
  padding: 15px;
  margin: 15px auto;
}

.share-your-story__wrapper_form-wrapper {
  width: 60%;
}

.share-your-story__wrapper_form_form-check {
  width: fit-content;
  margin: 0 auto;
}

.share-your-story__wrapper_form_form-check-label {
  font-size: 14px;
  padding-top: 7px;
}

/* Voices from Leaders */
.voices-section__carousel_card {
  background-color: rgb(var(--clr--forest));
  padding: 50px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.voices-section__carousel_card:before {
  content: "";
  width: 90px;
  aspect-ratio: 1 / 1;
  background: url("/wp-content/uploads/2025/12/quotation-mark-1.png") no-repeat 0 0 / contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.voices-section__carousel_card_body {
  flex-grow: 1;
}

.voices-section__carousel_card_body * {
  font-size: 19px;
  color: rgb(var(--clr--white));
  font-style: oblique;
  text-align: center;
}

.voices-section__carousel_card_footer * {
  font-size: 17px;
  color: rgb(var(--clr--white));
  font-style: oblique;
  text-align: center;
}

.voices-section__carousel_card_footer strong {
  font-size: 19px;
}

/* About */
.about-section__content {
  text-align: center;
}

.about-section__content_block {
  color: rgb(var(--clr--forest));
  font-weight: 900;
  display: inline-block;
  padding: 10px 35px;
  margin-top: 1.25rem;
  border: 5px solid rgb(var(--clr--forest));
}

/* The Facts */


.the-facts {
  background: linear-gradient(0deg,rgba(var(--clr--green), 1) 0%, rgba(var(--clr--forest), 1) 100%);
}

.the-facts__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.the-facts__wrapper_image {
   width: 50%;
  position: relative;
  overflow: hidden;

}
.the-facts__wrapper_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;    
  display: block;

}

.the-facts__wrapper_facts {
  color: rgb(var(--clr--white));
  width: 55%;
}

.the-facts__wrapper_facts_carousel_item_subhead {
  color: rgb(var(--clr--white));
  padding-left: 60px;
  position: relative;
  font-size: 24px;
  line-height: 30px;
}


.the-facts__wrapper_facts ul {
  padding-left: 60px;
  margin-top: 2.5rem;
}

.the-facts__wrapper_facts ul li {
  margin-bottom: 1.25rem;
  padding-left: 50px;
  background: url("/wp-content/uploads/2025/12/gold-tick.svg") no-repeat 0 5px / 30px 30px;
  min-height: 35px;
}

.the-facts__wrapper_facts .c2 li{
  background: url("/wp-content/uploads/2025/12/x.svg") no-repeat 0 5px / 30px 30px;
}

.c4{
    display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  min-height: 20%;
  text-align: left;
}
.c4 span{
  color: rgb(var(--clr--gold));
  font-size: 36px;
  line-height: 42px;
}


.the-facts__wrapper_facts ul li:last-child {
  margin-bottom: 0;
}

/* Sign the Petition */

.petition-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.petition-checklist li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: clamp(16px, 1.2vw, 22px);
  background: url("/wp-content/uploads/2025/12/forest-tick.svg") no-repeat 0 0 / 30px 30px;
}
.sign-the-petition{
  background: url("/wp-content/uploads/2025/12/petition-bg.jpg") center/cover no-repeat;
}



.sign-the-petition__wrapper {
   display: flex;
  align-items: center; /* Changed from flex-start to center */
  gap: 64px; 
}

.sign-the-petition__wrapper_content {
  width: 46%;
  padding: 40px 40px 50px;
  border: 4px solid #f6b800;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  margin-right: -120px; 
}


.sign-the-petition__wrapper_content_title {
  color: rgb(var(--clr--forest));
  font-size: clamp(28px, 2.2vw, 44px);
  font-weight: 800;
  margin-bottom: 30px;
}

.sign-the-petition__wrapper_content p {
  font-size: clamp(16px, 1.4vw, 32px);
}

.sign-the-petition__wrapper_form-wrapper {
  width: 54%;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 28px;
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  osition: relative;
  z-index: 2;
}


/* Question text */
.petition-question {
  font-size: 14px;
  margin-bottom: 10px;
  margin-top:10px;
}

/* Yes / No layout */
.petition-radio-group {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;

}

.petition-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* Custom radio look (simple, image-style) */
.petition-radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: rgb(var(--clr--forest));
}

/* Textarea */
.petition-textarea {
  border: 2px solid #9c9c9c;
  border-radius: 2px;
  padding: 14px 16px;
  font-size: 16px;
  resize: none;
}

.petition-textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: rgb(var(--clr--forest));
}



.petition_submit_btn {
   display: block;
  margin: 30px auto 0;
  background-color: rgb(var(--clr--forest));
  color: #fff;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 2px;
  text-align: center;
}
.sign-the-petition input.form-control,
.sign-the-petition textarea.form-control {
  border: 1px solid #9c9c9c;
  border-radius: 2px;
  padding: 14px 16px;
  font-size: 16px;
}

.sign-the-petition input.form-control:focus,
.sign-the-petition textarea.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: rgb(var(--clr--forest));
}

/* Privacy Policy */
.common-content__container h3 {
  margin-bottom: 16px;
}

.common-content__container ul {
  padding-left: 30px;
  margin-bottom: 20px;
}

.common-content__container ul li {
  list-style: disc;
  background: none;
  padding: 0;
}

/* 404 Error */
.error-message {
  min-height: calc(100vh - 337px);
  display: flex;
  align-items: center;
  background: url("/wp-content/uploads/2025/12/baclground-pattern-2.png") no-repeat 0 0 / cover;
}

.error-message__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.error-message__title {
  color: rgb(var(--clr--forest));
  /* font-size: clamp(48px, 7.5vw, 120px); */
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
}

/* Footer */
footer {
  background: rgb(var(--clr--forest));
  padding-block: 2rem;
}

.footer__wrapper {
  color: rgb(var(--clr--white));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer__wrapper_logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.footer__wrapper_logo {
  max-width: 180px;
  padding: 0;
  display: block;
  line-height: 1;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.footer__wrapper_logo img {
  width: 100%;
  height: auto;
  position: relative;
}

.footer__wrapper_copyright p {
  font-size: 12px;
}

.footer__wrapper_copyright_social-grid {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer__wrapper_copyright_social-grid a {
  color: rgb(var(--clr--forest));
  font-size: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1 / 1;
  background-color: rgb(var(--clr--white));
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.footer__wrapper_copyright_social-grid a:hover {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--black));
}

.footer__wrapper_social {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.footer__wrapper_social a {
  color: rgb(var(--clr--white));
  font-size: 22px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  background-color: rgb(var(--clr--forest));
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.footer__wrapper_social a:hover {
  background-color: rgba(var(--clr--white), 0.2);
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.have-you-say__form_success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.have-you-say__form_error{
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.cmm-petition-count {
  font-size: 21px;
  color: rgb(var(--clr--white));
  text-align: center;
  display: block;
  width: fit-content;
  background: rgb(var(--clr--forest));
  padding: 5px 15px;
  margin: 0 auto 20px;
}

.cmm-petition-progress {
  margin: 10px 0 20px;
}

.cmm-petition-progress-bar {
  width: var(--progress--count);
  background: rgb(var(--clr--forest)) !important;
}

/* Petition Counter */
.petition-counter {
  background-color: rgb(var(--clr--forest));
  color: rgb(var(--clr--white));
  padding: 12px 20px 12px 0;
  margin: 0 0 20px -40px;
  padding-left: 0;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 600;
  text-align: left;
}

.petition-counter__number {
  font-weight: 900;
  font-size: clamp(18px, 1.4vw, 24px);
  letter-spacing: 2px;
  padding-left: 40px;
}

/* Thank You Message for Petition */
.cmm-petition-return-message {
  display: none;
  width: 54%;
  position: relative;
  z-index: 2;
}

.cmm-petition-return-message.show-message {
  display: block;
}

.cmm-petition-return-message[style*="block"] {
  display: block !important;
}

.petition-thank-you-message {
  text-align: center;
  padding: 55px 40px;
  background-color: rgb(var(--clr--white));
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(var(--clr--black), 0.15);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.petition-thank-you-message h2 {
  color: rgb(var(--clr--forest));
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.petition-thank-you-message p {
  color: rgb(var(--clr--black));
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  margin: 0 0 18px 0;
}

.petition-thank-you-message p:last-child {
  margin-bottom: 0;
}

.petition-thank-you-message p strong,
.petition-thank-you-message p span.highlight {
  color: rgb(var(--clr--forest));
  font-weight: 700;
}