/* ====== 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--blue: 21, 39, 173; /* #1527AD */
  --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--blue));
  background: linear-gradient(0deg,rgba(var(--clr--black), 1) 0%, rgba(var(--clr--blue), 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;
  background: url("/wp-content/uploads/2025/12/list-icon-yellow-1.png") no-repeat 0 3px / 25px 30px;
}

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

.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--blue {
  color: rgb(var(--clr--blue)) !important;
}

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

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

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

.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--blue));
  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--blue));
  -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--blue));
  border: 2px solid rgb(var(--clr--blue));
}

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

.primary--btn.disabled {
  background-color: rgba(var(--clr--blue), 0.6);
  border-color: rgba(var(--clr--blue), 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--blue));
  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--blue));
}

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

/* ====== HEADER ====== */
.header {
  width: 100%;
  background-color: rgb(var(--clr--white));
  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: 220px;
  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: center;
  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--black));
  font-family: var(--fnt--inter);
  font-size: clamp(16px, 1.1vw, 24px);
  line-height: 1;
  text-decoration: none;
  padding: 29px 20px;
  display: block;
}

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

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

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

li.menu-item ul.sub-menu li a {
  color: rgb(var(--clr--black));
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 15px;
  display: block;
}

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

.nav-btn a {
  color: rgb(var(--clr--white)) !important;
  font-weight: 900;
  text-decoration: none;
  background-color: rgb(var(--clr--blue));
  padding: 12px 35px !important;
  margin-left: 15px;
  border: 2px solid rgb(var(--clr--blue));
  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--blue)) !important;
  background-color: rgb(var(--clr--white));
  border: 2px solid rgb(var(--clr--blue));
  text-decoration: none !important;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: rgb(var(--clr--black));
}

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

.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--blue));
  width: 32px;
  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: rgb(var(--clr--blue));
  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-banner {
  background: url("/wp-content/uploads/2025/12/baclground-pattern-2.png") no-repeat 0 0 / cover;
  padding: 2rem 0;
}

.hero-banner__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
}

.hero-banner__wrapper_content {
  width: 50%;
}

.hero-banner__wrapper_content-wrapper {
  transform: rotate(-1deg);
  -webkit-transform: rotate(-1deg);
  -moz-transform: rotate(-1deg);
  -ms-transform: rotate(-1deg);
  -o-transform: rotate(-1deg);
}

.hero-banner__wrapper_hero-heading {
  display: inline;
  font-size: clamp(21px, 2.4vw, 48px);
  font-weight: 400;
  color: rgb(var(--clr--white));
  line-height: clamp(24px, 2.8vw, 58px);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-banner__wrapper_hero-heading span {
  width: fit-content;
  padding: 4px 10px;
  margin-bottom: -1px;
  display: block;
  background-color: rgb(var(--clr--blue));
}

.hero-banner__wrapper_hero-underline {
  background: rgb(var(--clr--blue)) url("/wp-content/uploads/2025/12/underline-1.png") no-repeat 12px calc(100% - 5px) / calc(100% - 25px);
  padding-bottom: 20px !important;
}

.hero-banner__wrapper_media {
  width: 50%;
}

/* 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--blue));
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.share-your-story__wrapper_content * {
  color: rgb(var(--clr--blue));
  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--blue));
  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--blue));
  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--blue));
  font-weight: 900;
  display: inline-block;
  padding: 10px 35px;
  margin-top: 1.25rem;
  border: 5px solid rgb(var(--clr--blue));
}

/* The Facts */
.the-facts {
  background-color: rgb(var(--clr--blue));
}

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

.the-facts__wrapper_image {
  width: 45%;
}

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

.the-facts__wrapper_facts_carousel_item_subhead span {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1 / 1;
  border: 3px solid rgb(var(--clr--white));
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

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

.the-facts__wrapper_facts ul li {
  margin-bottom: 1.25rem;
}

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

/* Sign the Petition */
.sign-the-petition__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.sign-the-petition__wrapper_content {
  width: 50%;
}

.sign-the-petition__wrapper_content_title {
  color: rgb(var(--clr--blue));
  font-size: clamp(24px, 2.1vw, 48px);
  font-weight: 900;
  margin-bottom: 30px;
  text-wrap: balance;
}

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

.sign-the-petition__wrapper_form-wrapper {
  background-color: rgb(var(--clr--white));
  width: 50%;
  padding: 2rem;
  border: 5px solid rgb(var(--clr--blue));
}

.sign-the-petition__wrapper_form-wrapper_title {
  color: rgb(var(--clr--blue));
  font-size: clamp(24px, 2.1vw, 48px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
  text-wrap: balance;
}

.petition_submit_btn {
  margin: 25px auto 0;
}

/* 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--blue));
  /* font-size: clamp(48px, 7.5vw, 120px); */
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
}

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

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

.footer__wrapper_logo {
  max-width: 380px;
  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: 18px;
}

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

.footer__wrapper_copyright_social-grid a {
  color: rgb(var(--clr--blue));
  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));
}

.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--blue));
  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--blue)) !important;
}