/* ====== FONTS ====== */
@import url('https://fonts.googleapis.com/css?family=Calibri:400,700,400italic,700italic&display=swap');

:root {
  --clr--dark--blue: 26, 66, 129; /* #1A4281 */
  --clr--light--blue: 77, 170, 227; /* #4DAAE3 */
  --clr--shaded--blue: 208, 236, 250; /* #D0ECFA */
  --clr--green: 79, 173, 153; /* #4FAD99 */
  --clr--black: 0, 0, 0; /* #000000 */
  --clr--white: 255, 255, 255; /* #ffffff */

  --fnt--calibri: "Calibri", sans-serif;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-track {
  background: rgb(var(--clr--white));
  box-shadow: inset 1px 1px 2px rgba(var(--clr--black), 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgb(var(--clr--dark--blue));
  background: linear-gradient(0deg, rgba(var(--clr--dark--blue), 1) 0%, rgba(var(--clr--light--blue), 1) 50%, rgba(var(--clr--dark--blue), 1) 100%);
  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--calibri);
  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.3;
  font-weight: 700;
  border-bottom: 0;
}

h1 {
  font-size: clamp(32px, 3vw, 82px);
}

h2 {
  font-size: clamp(23px, 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(19px, 1.3vw, 27px);
  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(19px, 1.3vw, 27px);
  line-height: 1.4;
  padding-left: 50px;
}

.small,
small {
  display: inline-block;
  font-weight: 400;
  line-height: 1.2;
  font-size: 16px !important;
}

a {
  color: currentColor;
}

.desktop {
  display: inline-block !important;
}

.mobile {
  display: none !important;
}

.hidden {
  display: none;
}

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(235, 235, 235);
  border: 2px dashed rgb(173, 173, 173);
}

section {
  position: relative;
  overflow-x: hidden;
}

.wrapper {
  overflow-x: hidden;
}

.section-row {
  padding-block: clamp(40px, 3vw, 92px);
  position: relative;
}

.panel,
.StandardPanel {
  border: 0;
}

.panel-body,
.PanelBody {
  padding: 0;
}

.iMIS-WebPart > .ContentItemContainer {
  margin: 0 !important;
}

.titles {
  margin-bottom: 1.75rem;
}

.titles > h1,
.titles > h2 {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(28px, 2.7vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.titles__highlighter {
  color: rgb(var(--clr--light--blue));
  font-style: italic;
}

.titles__sub-heading {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(19px, 1.3vw, 36px);
  text-align: center;
  text-transform: unset;
  max-width: 700px;
  margin: 15px auto 0;
}

.title-header {
  text-align: center;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.sub-heading > h3 {
  font-size: clamp(25px, 1.8vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.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--calibri {
  font-family: var(--fnt--calibri);
}

.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--dark--blue {
  color: rgb(var(--clr--dark--blue)) !important;
}

.clr--light--blue {
  color: rgb(var(--clr--light--blue)) !important;
}

.clr--shaded--blue {
  color: rgb(var(--clr--shaded--blue)) !important;
}

.clr--green {
  color: rgb(var(--clr--green)) !important;
}

.clr--black {
  color: rgb(var(--clr--black)) !important;
}

.clr--white {
  color: rgb(var(--clr--white)) !important;
}

.bgclr--dark--blue {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--dark--blue));
}

.bgclr--light--blue {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--light--blue));
}

.bgclr--shaded--blue {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--shaded--blue));
}

.bgclr--green {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--green));
}

.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(229, 229, 229);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

textarea.form-control {
  min-height: 375px;
  padding: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

select.form-control {
  background: rgb(229, 229, 229) url("/images/PANDC2026/select-dropdown.svg");
  background-position: calc(100% - 12px) calc(100% - 12px);
  background-repeat: no-repeat;
  background-size: 20px;
}

.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: 1px solid rgb(var(--clr--dark--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;
}

/* 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--dark--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: 15px;
  font-weight: 500;
  background-color: rgb(220, 53, 69);
  padding: 5px 10px;
}

/* ====== BUTTONS ====== */
.btn {
  font-size: clamp(19px, 1.3vw, 27px);
  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;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn * {
  transition: ease-in .4s;
  -webkit-transition: ease-in .4s;
  -moz-transition: ease-in .4s;
  -ms-transition: ease-in .4s;
  -o-transition: ease-in .4s;
}

.btn:hover,
a:hover {
  text-decoration: none;
}

.btn-large {
  font-size: clamp(21px, 1.5vw, 36px);
  padding: 25px 60px !important;
  position: relative;
  z-index: 9;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.primary--btn {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--dark--blue));
  border: 2px solid rgb(var(--clr--dark--blue));
}

.primary--btn:hover,
.primary--btn:active,
.primary--btn:focus-visible {
  color: rgb(var(--clr--white)) !important;
  background-color: rgb(var(--clr--light--blue)) !important;
  border: 2px solid rgb(var(--clr--light--blue)) !important;
}

.primary--btn.disabled {
  background-color: rgba(var(--clr--light--blue), 0.6);
  border-color: rgba(var(--clr--light--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;
  justify-content: center;
  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: 0;
  vertical-align: top;
  display: flex;
  justify-content: center;
}

.owl-nav {
  width: 100%;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next{
  font-size: 35px;
  color: rgb(var(--clr--dark--blue));
  font-weight: 700;
  background: transparent;
  width: 35px;
  height: 35px;
  border: 0;
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.owl-nav button.owl-prev {
  left: -40px;
}

.owl-nav button.owl-next{
  right: -40px;
}

.owl-dots {
  margin-top: 15px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
}

.owl-dots button.owl-dot {
  width: 35px;
  height: 5px;
  background: rgba(var(--clr--red), .3);
  border: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.owl-dots button.owl-dot.active {
  background: rgb(var(--clr--red));
}

.owl-loaded .disabled {
  display: none;
}

/* ====== HEADER ====== */
.header {
  width: 100%;
  background-color: rgb(var(--clr--white));
  padding: 20px 0;
  box-shadow: 0 3px 6px rgba(var(--clr--black), 0.05);
  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-block: 5px;
  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 > .container {
  position: relative;
}

.navbar > .container > .row {
  width: 100%;
}

.navbar-collapse {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

.RadMenu .rmHorizontal .rmRootLink .rmToggle {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 !important;
  float: unset !important;
  position: absolute !important;
  top: 55%;
  right: 6px;
  transform: translateY(-50%);
}

.RadMenu .rmHorizontal .rmRootLink .rmIcon {
  font-size: 0 !important;
  margin: 0 !important;
  text-indent: unset !important;
  overflow: visible !important;
  position: unset !important;
}

.header .WTZone {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo,
#ste_container_ciHeaderLogo {
  max-width: 110px;
  height: 57px;
  padding: 0;
  line-height: 1;
  position: relative;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
}

.header__fixed-header .header__logo,
.header__fixed-header #ste_container_ciHeaderLogo {
  max-width: 70px;
  height: 36px;
  padding: 0;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
}

.header__logo img {
  width: 100%;
  height: auto;
  position: relative;
}

/* ====== NAVIGATION ====== */
.header__navbar_collapse {
  justify-content: flex-end;
}

.header__navbar {
  justify-content: space-between;
  align-items: center;
}

.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,
.rmRootGroup .rmItem a.rmLink {
  color: rgb(var(--clr--dark--blue));
  font-family: var(--fnt--calibri);
  font-size: clamp(21px, 1.4vw, 26px);
  line-height: 1;
  text-decoration: none;
  padding: 14px 15px;
  display: block;
}

.menu-item a:has(> .rmToggle),
.rmRootGroup .rmItem a.rmLink:has(> .rmToggle) {
  padding-right: 30px;
}

.rmRootGroup .rmItem a.rmLink .rmText {
  /* color: rgb(var(--clr--dark--blue)); */
  width: 100%;
  padding: 0;
  margin: 0;
}

.rmVertical .rmText {
  color: rgb(var(--clr--dark--blue));
}

.rmSelected .rmText:has(+ .rmToggle),
.rmExpanded .rmText:has(+ .rmToggle) {
  color: rgb(var(--clr--white)) !important;
}

.menu-item.menu-item-has-children a {
  padding: 10px 35px 10px 20px;
}

.rmRootGroup .rmIcon {
  position: relative !important;
}

.menu-item.menu-item-has-children > a::after,
.rmRootGroup .rmIcon::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  /* color: rgb(var(--clr--dark--blue)); */
  position: absolute;
  left: 0;
  top: 0;
}

.menu-item.current-menu-parent > a,
.menu-item.current-menu-item > a,
.menu-item:hover > a,
.rmRootGroup .rmItem:hover > a.rmLink,
.rmSelected,
.rmExpanded {
  color: rgb(var(--clr--white)) !important;
  background-color: rgb(var(--clr--dark--blue)) !important;
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
}

.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,
.RadMenu .rmHorizontal .rmItem:hover .rmIcon::after,
.rmSelected .rmText:has(+ .rmToggle)::after,
.rmExpanded .rmText:has(+ .rmToggle)::after {
  color: rgb(var(--clr--white)) !important;
}

li.menu-item ul.sub-menu,
.rmItem .rmGroup {
  width: 220px;
  padding: 0 !important;
  margin: 0;
  list-style: none;
  background: rgb(var(--clr--white));
  border: 1px solid rgb(var(--clr--dark--blue));
  position: absolute;
  z-index: 9;
  display: none;
  box-shadow: 0 2px 10px rgba(var(--clr--black), 0.2);
  overflow: hidden !important;
  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,
.rmItem .rmGroup li a {
  color: rgb(var(--clr--dark--blue)) !important;
  font-size: 19px !important;
  font-weight: 500;
  line-height: 1.2;
  text-underline-offset: 30px;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
  text-decoration: none;
  background: transparent !important;
  width: unset !important;
  padding: 9px 15px !important;
  display: block;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

li.menu-item ul.sub-menu li a:hover,
.rmItem .rmGroup li a:hover,
.rmItem .rmGroup li a.rmFocused,
.rmRootGroup .rmItem .rmItem:hover > a.rmLink:hover {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--shaded--blue)) !important;
  outline: 1px solid rgb(var(--clr--dark--blue));
  outline-offset: 0;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.nav-btn a {
  color: rgb(var(--clr--white)) !important;
  text-decoration: none;
  background-color: rgb(var(--clr--dark--blue));
  padding: 12px 35px !important;
  margin-left: 15px;
  border: 2px solid rgb(var(--clr--dark--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;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.nav-btn a:hover {
  color: rgb(var(--clr--white)) !important;
  background-color: rgb(var(--clr--light--blue));
  border: 2px solid rgb(var(--clr--light--blue));
  text-decoration: none !important;
}

.header__navbar_toggler {
  padding: 5px 10px;
  margin-top: 7px;
  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--dark--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;
}

.RadMenu .rmSlide {
  top: 54px !important;
}

.UtilitySection {
  margin: 0;
}

.header__search-icon {
  width: 40px;
  height: 40px;
  margin-top: 10px;
  margin-left: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header__search-icon img {
  position: absolute;
  transition: opacity 0.2s ease;
}

.icon-close {
  opacity: 0;
  pointer-events: none;
}

.header__search-icon.is-active .icon-search {
  opacity: 0;
}

.header__search-icon.is-active .icon-close {
  opacity: 1;
}

.header__search-box {
  position: absolute;
  right: 50px;
  top: -7px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transition: 0.25s ease;
  -webkit-transition: 0.25s ease;
  -moz-transition: 0.25s ease;
  -ms-transition: 0.25s ease;
  -o-transition: 0.25s ease;
}

.header__search-box.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.header__search-box input {
  width: 1000px;
  /* padding: 15px 14px; */
  /* border: 1px solid rgb(var(--clr--dark--blue)); */
  border-radius: 6px;
  outline: none;
}

.header__search-button {
  border: 0;
  background: 0;
  position: absolute;
  top: 15px;
  right: 10px;
}

#PageSearch {
  /* height: 0; */
  position: relative;
  z-index: 9999;
}

.SimpleSearchBlock {
  background: rgb(var(--clr--white));
  width: 1000px;
  padding: 10px 14px;
  outline: none;
  border: 1px solid rgb(var(--clr--dark--blue));
  display: flex;
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 9999;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.SimpleSearchBlock > * {
  background: none;
  border: 0;
  position: relative;
}

.SimpleSearchBlock > *:focus-visible {
  outline: 0;
}

.SimpleSearchBlock .search-field {
  width: 100%;
}

.TextButton {
  color: transparent;
  width: 30px !important;
  height: 30px;
  padding: 18px;
  background: #f0f0f0 url("/images/PANDC2026/magnifying-glass.svg") no-repeat 50% / 20px;
  border: 0;
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
}

.SearchResultSummary .ListItemTitle img {
  width: 25px;
}

/* ====== Breadscrumb ====== */
#masterMainBreadcrumb {
  background: rgb(var(--clr--dark--blue));
}

.faq-page #masterMainBreadcrumb,
.contact-page #masterMainBreadcrumb {
  background: rgb(var(--clr--light--blue));
}

.tips-page #masterMainBreadcrumb {
  background: rgb(var(--clr--shaded--blue));
}

#asi_BreadCrumbNav {
  color: rgb(var(--clr--white));
  width: 1320px;
  padding-top: 150px;
  padding-inline: 12px;
  margin: 0 auto;
}

.faq-page #asi_BreadCrumbNav,
.tips-page #asi_BreadCrumbNav,
.contact-page #asi_BreadCrumbNav {
  color: rgb(var(--clr--dark--blue));
}

.breadcrumb {
  margin: 0;
}

.breadcrumb-item+.breadcrumb-item {
  padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before{
  display: none;
}

.breadcrumb-item.active {
  color: rgb(var(--clr--white)) !important;
}

.faq-page .breadcrumb li.breadcrumb-item,
.tips-page .breadcrumb li.breadcrumb-item,
.contact-page .breadcrumb li.breadcrumb-item {
  color: rgb(var(--clr--dark--blue)) !important;
}

/* ====== Hero ====== */
.gutter-top {
  padding-top: 95px;
}

.hero__banner {
  min-height: 600px;
  display: flex;
  align-items: center;
  background: rgb(var(--clr--light--blue));
}

.hero__banner:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--hero--bg) no-repeat 100% 50% / contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero__banner_copy {
  color: rgb(var(--clr--white));
  width: 45%;
  padding-left: calc(50vw - 650px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.hero__banner_copy_heading {
  color: rgb(var(--clr--white));
  font-size: clamp(36px, 2.6vw, 54px);
  line-height: 1.2;
}

.hero__banner_copy_btn-wrapper {
  display: flex;
  gap: 25px;
}

.hero__banner_copy_get-button {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--white));
  padding: 20px !important;
}

.hero__banner_copy_get-button:hover {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--dark--blue));
}

span.hero__banner_copy_get-button {
  cursor: auto;
}

span.hero__banner_copy_get-button:hover {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--white));
}

.hero__banner_copy_learn-button {
  color: rgb(var(--clr--white));
  background-color: transparent;
  padding: 20px !important;
  border: 2px solid rgb(var(--clr--white));
}

.hero__banner_copy_learn-button:hover {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--dark--blue));
  border: 2px solid rgb(var(--clr--dark--blue));
}

/* Inner Page Hero */
.inner-page-hero {
  background-color: rgb(var(--clr--dark--blue));
}

.inner-page-hero__light-blue {
  background-color: rgb(var(--clr--light--blue));
}

.inner-page-hero__banner_copy_heading {
  color: rgb(var(--clr--white)) !important;
  text-align: left !important;
}

.inner-page-hero__banner_copy {
  color: rgb(var(--clr--white));
  padding-bottom: 2rem;
}

.inner-page-hero__banner_copy-wrapper {
  margin-top: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.inner-page-hero__banner_copy-text {
  max-width: 992px;
}

.inner-page-hero__banner_copy-text h3 {
  font-size: clamp(23px, 1.8vw, 36px);
  margin-bottom: 2rem;
}

.inner-page-hero__banner_copy:has(:not(.titles + .inner-page-hero__banner_copy-wrapper)) {
  padding: 0;
}

.inner-page-hero__banner_copy .titles:has(:not(+ .inner-page-hero__banner_copy-wrapper)) {
  margin: 0 !important;
}

.inner-page-hero__banner_cta-button {
  color: rgb(var(--clr--dark--blue));
  font-weight: 600;
  background-color: rgb(var(--clr--white));
  padding: 12px 20px !important;
  margin-top: 30px;
}

.inner-page-hero__banner_cta-button:hover {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--light--blue));
}

.inner-page-hero__banner_copy-wrapper img {
  width: 50%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.inner-page-hero__banner_copy-wrapper p {
  font-size: clamp(18px, 1.3vw, 24px);
}

/* Who We Are */
.who-we-are {
  margin-top: 5rem;
}

.who-we-are__wrapper_stats-grid,
.icon-cards__wrapper_card-grid {
  margin-block: 5rem;
}

.who-we-are__wrapper_stats-grid {
  gap: 60px;
}

.icon-cards__wrapper_card-grid {
  gap: 67px;
}

.who-we-are__wrapper_stats-card,
.icon-cards__wrapper_card {
  background-color: rgb(var(--clr--white));
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 1px 10px rgba(var(--clr--black), 0.15);
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.who-we-are__wrapper_stats-card {
  width: calc((100% / 4) - 45px);
}

.icon-cards__wrapper_card {
  width: calc((100% / 3) - 45px);
}

.who-we-are__wrapper_stats-card:hover,
.icon-cards__wrapper_card:hover {
  background-color: rgba(var(--clr--shaded--blue), .4);
}

.who-we-are__wrapper_stats-card img,
.icon-cards__wrapper_card img {
  width: 130px;
}

.who-we-are__wrapper_stats-card-stat,
.icon-cards__wrapper_card-title {
  text-align: center;
  font-size: clamp(18px, 1.3vw, 27px);
  color: rgb(var(--clr--light--blue));
  font-weight: 600;
}

.who-we-are__wrapper_stats-card p,
.icon-cards__wrapper_card p {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(18px, 1.1vw, 24px);
  text-align: center;
}

/* How we can help */
.how-we-can-help {
  background-color: rgb(var(--clr--shaded--blue));
}

.how-we-can-help__wrapper .titles {
  margin-top: 3rem;
  margin-bottom: 9rem !important;
}

.how-we-can-help__wrapper_card-grid {
  margin-block: 5rem;
  column-gap: 120px;
  row-gap: 60px;
}

.how-we-can-help__wrapper_card-grid.grid-three {
  column-gap: 90px;
  row-gap: 50px;
}

.how-we-can-help__wrapper_card {
  text-align: left;
  width: calc((100% / 2) - 60px);
  background-color: rgb(var(--clr--white));
  padding: 25px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0px 3px 6px rgba(var(--clr--black), 0.15);
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.how-we-can-help__wrapper_card-grid.grid-three .how-we-can-help__wrapper_card {
  width: calc((100% / 3) - 60px) !important;
}

.how-we-can-help__wrapper_card:hover {
  background-color: rgba(var(--clr--light--blue), .1);
}

.how-we-can-help__wrapper_card img {
  width: 80px;
}

.how-we-can-help__wrapper_card-copy {
  flex-grow: 1;
}

.how-we-can-help__wrapper_card-heading {
  color: rgb(var(--clr--dark--blue));
}

.how-we-can-help__wrapper_card p {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(18px, 1.1vw, 27px);
  line-height: 1.4;
}

.how-we-can-help__wrapper_card-learn-button {
  font-size: 21px;
  background-color: rgb(var(--clr--dark--blue));
  min-width: auto;
  padding: 10px 20px !important;
}

.how-we-can-help__wrapper_card-learn-button:hover {
  background-color: rgb(var(--clr--white));
}

/* Latest News */
.latest-news__wrapper_header {
  padding-top: clamp(40px, 3vw, 92px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.latest-news__view-all-button {
  background-color: rgb(var(--clr--dark--blue));
  padding: 12px !important;
  margin-top: 8px;
}

.latest-news__view-all-button:hover {
  background-color: rgb(var(--clr--light--blue));
}

.latest-news__wrapper_card-grid .TaggedListPanel {
  width: 1320px;
  padding-top: 40px;
  padding-bottom: clamp(40px, 3vw, 92px);
  padding-inline: 12px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  column-gap: 80px;
  row-gap: 50px;
}

.news-page {
  padding-top: clamp(40px, 3vw, 92px);
}

.latest-news__wrapper_card-grid .TaggedListPanel div[translate="yes"] {
  display: none;
}

.news-page .TaggedListPanel div[translate="yes"] {
  display: block;
}

.news-page .TextButton {
  color: rgb(var(--clr--white));
  font-size: 21px;
  text-decoration: none;
  background: rgb(var(--clr--dark--blue));
  min-width: auto;
  width: auto !important;
  height: auto;
  padding: 10px 20px !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
}

.news-page .TextButton:hover {
  background-color: rgb(var(--clr--light--blue));
}

.latest-news__wrapper_card {
  text-align: left;
  width: 100%;
  background-color: rgb(var(--clr--white));
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  cursor: pointer;
  position: relative;
  box-shadow: 0px 3px 6px rgba(var(--clr--black), 0.15);
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.latest-news__wrapper_card a {
  font-size: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
}

.latest-news__wrapper_card:hover {
  background-color: rgba(var(--clr--shaded--blue), .4);
}

.latest-news__wrapper_card img {
  width: 300px;
  height: 230px;
  object-fit: cover;
}

.latest-news__wrapper_card-news {
  width: calc(100% - 380px);
  padding-block: 20px;
}

.latest-news__wrapper_card-news * {
  color: rgb(var(--clr--dark--blue));
  margin: 0;
  display: block;
  line-height: 1.2;

}

.latest-news__wrapper_card-news-heading {
  font-size: clamp(23px, 1.8vw, 36px);
  margin-bottom: 3px;
}

.latest-news__wrapper_card-news-date {
  margin-bottom: 16px !important;
}

/* Upcoming events */
.upcoming-events {
  background-color: rgb(var(--clr--light--blue));
}

.upcoming-events__wrapper_header {
  padding-top: clamp(40px, 3vw, 92px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.upcoming-events__wrapper_title {
  color: rgb(var(--clr--white)) !important;
}

.upcoming-events__view-all-button {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--white));
  padding: 12px !important;
  margin-top: 8px;
}

.upcoming-events__view-all-button:hover {
  background-color: rgb(var(--clr--shaded--blue));
}

.upcoming-events__wrapper_card-grid {
  margin: 0;
  background-color: rgb(var(--clr--light--blue));
}

.upcoming-events__wrapper_card-grid .QueryTemplateSet {
  width: 1320px;
  padding-top: 40px;
  padding-bottom: clamp(40px, 3vw, 92px);
  padding-inline: 12px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  column-gap: 80px;
  row-gap: 50px;
}

.upcoming-events__wrapper_card-grid .QueryTemplateSet > .col {
  padding: 0;
}

.upcoming-events__wrapper_card {
  text-align: left;
  width: 100%;
  background-color: rgb(var(--clr--white));
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  box-shadow: 0px 3px 6px rgba(var(--clr--black), 0.15);
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.upcoming-events__wrapper_card:hover {
  background-color: rgba(var(--clr--shaded--blue), .9);
}

.upcoming-events__wrapper_card a {
  text-decoration: none;
}

.upcoming-events__wrapper_card img {
  width: 240px;
  padding: 40px 50px;
}

.upcoming-events__wrapper_card-news {
  width: calc(100% - 240px);
  padding-block: 20px;
  padding-right: 20px;
}

.upcoming-events__wrapper_card-news * {
  color: rgb(var(--clr--dark--blue));
  margin: 0;
}

.upcoming-events__wrapper_card-news-heading {
  font-size: clamp(23px, 1.8vw, 36px);
  margin-bottom: 8px;
}

body.event-single .iMIS-WebPart:nth-of-type(2) {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(19px, 1.3vw, 27px);
  line-height: 1.3;
  width: 1320px;
  padding-block: clamp(40px, 3vw, 92px);
  padding-inline: 12px;
  margin: 0 auto;
}

body.event-single .iMIS-WebPart:nth-of-type(2) .panel-title {
  color: rgb(var(--clr--dark--blue)) !important;
  font-size: clamp(32px, 2.7vw, 60px);
  font-weight: 700;
  line-height: 1.1;
}

body.event-single .iMIS-WebPart:nth-of-type(2) .EventSummary .col > * {
  text-align: left;
  float: none;
}

body.event-single .iMIS-WebPart:nth-of-type(2) .EventSummary .col > *:nth-of-type(1) > img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

body.event-single .iMIS-WebPart:nth-of-type(2) .ContactLocationArea {
  width: 100%;
}

body.event-single .iMIS-WebPart:nth-of-type(2) .PanelField .Label {
  color: rgb(var(--clr--dark--blue));
}

/* Join Our Community */
.join-our-community__wrapper {
  background-color: rgb(var(--clr--green));
  display: flex;
  align-items: center;
}

.join-our-community__wrapper > img {
  width: 50%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.join-our-community__wrapper_copy {
  color: rgb(var(--clr--white));
  width: 50%;
  padding: 3rem calc(50vw - 650px) 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.join-our-community__wrapper_copy .titles {
  margin: 0;
}

.join-our-community__wrapper_header {
  color: rgb(var(--clr--white)) !important;
  text-align: left !important;
}

.join-our-community__get-connected-button {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--white));
  padding: 15px !important;
}

.join-our-community__get-connected-button:hover {
  background-color: rgb(var(--clr--dark--blue));
}

/* Company Values */
.company-values {
  background-color: rgb(var(--clr--light--blue));
}

.company-values .copy-content__wrapper_heading {
  color: rgb(var(--clr--white)) !important;
}

.copy-content__wrapper {
  color: rgb(var(--clr--white));
}

.copy-content__wrapper_card {
  margin-bottom: 3rem;
}

.copy-content__wrapper_card:last-child {
  margin-bottom: 1rem;
}

.copy-content__wrapper_card .titles {
  margin-bottom: 1rem;
}

.copy-content__wrapper_heading {
  color: rgb(var(--clr--white)) !important;
  text-align: left !important;
}

.copy-content__wrapper_card h3 {
  font-size: clamp(23px, 1.8vw, 36px);
  margin-top: 45px;
  margin-bottom: 15px;
}

/* Our Impact */
.our-impact__wrapper_grid {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.our-impact__wrapper_grid-card {
  color: rgb(var(--clr--dark--blue));
  text-align: center;
}

.our-impact__wrapper_grid-card-stat {
  color: rgb(var(--clr--green));
  font-size: clamp(42px, 3vw, 82px);
  font-weight: 700;
  display: block;
}

.our-impact__wrapper_grid-card-title {
  font-size: clamp(23px, 1.8vw, 36px);
  margin-block: 15px;
}

.our-impact__wrapper_grid-card p {
  font-size: 21px;
}

/* Our Documents */
.our-documents {
  background-color: rgb(var(--clr--green));
}

.our-documents__wrapper_heading {
  color: rgb(var(--clr--white)) !important;
}

.our-documents__wrapper_card-grid {
  margin-top: 3rem;
  margin-bottom: 2rem;
  gap: 80px;
}

.our-documents__wrapper_card {
  text-align: center;
  width: calc((100% / 3) - 54px);
  background-color: rgb(var(--clr--white));
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.our-documents__wrapper_card:hover {
  background-color: rgb(var(--clr--shaded--blue));
}

.our-documents__wrapper_card-view-button {
  font-size: 21px;
  background-color: rgb(var(--clr--dark--blue));
  min-width: auto;
  padding: 10px 20px !important;
}

.our-documents__wrapper_card-view-button:hover {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--light--blue));
}

/* Issues We Champion */
.issues-we-champion .copy-content__wrapper {
  color: rgb(var(--clr--dark--blue));
}

.issues-we-champion .copy-content__wrapper_card {
  margin-bottom: 3rem;
}

.issues-we-champion .copy-content__wrapper_card:last-child {
  margin-bottom: 1rem;
}

.issues-we-champion .copy-content__wrapper_card .titles {
  margin-bottom: 1rem;
}

.issues-we-champion .copy-content__wrapper_heading {
  color: rgb(var(--clr--dark--blue)) !important;
  text-align: left !important;
}

/* Company Values */
.role-of-pac {
  background-color: rgb(var(--clr--light--blue));
}

.role-of-pac .copy-content__wrapper_heading {
  color: rgb(var(--clr--white)) !important;
}

/* Board Members */
.members-section__wrapper_heading {
  margin-top: 4rem;
  margin-bottom: 5rem;
}

.members-section__wrapper_card-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.members-section__wrapper_card {
  display: flex;
  align-items: center;
  gap: 25px;
}

.members-section__wrapper_card img {
  width: 300px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.members-section__wrapper_card-copy {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--shaded--blue));
  width: calc(100% - 325px);
  padding: 25px 40px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.members-section__wrapper_card-copy p {
  font-size: clamp(18px, 1.2vw, 27px);
}

/* Annual Report */
.annual-report {
  background-color: rgb(var(--clr--light--blue));
}

.annual-report .copy-content__wrapper_card {
  text-align: center;
  margin-inline: auto;
}

.annual-report .copy-content__wrapper_heading {
  color: rgb(var(--clr--white)) !important;
  text-align: center !important;
  margin-bottom: 45px;
}

.copy-content__wrapper_view-button {
  color: rgb(var(--clr--dark--blue));
  font-weight: 600;
  background-color: rgb(var(--clr--white));
  min-width: 250px;
  padding: 15px !important;
  margin: 45px auto 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.copy-content__wrapper_view-button:hover {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--dark--blue));
}

/* Why Work With Us */
.why-work-with-us .copy-content__wrapper {
  color: rgb(var(--clr--dark--blue));
}

.copy-content__wrapper_card {
  max-width: 992px;
}

.why-work-with-us .copy-content__wrapper_heading {
  color: rgb(var(--clr--dark--blue)) !important;
  text-align: left !important;
}

/* FAQs */
.faq-section__wrapper {
  padding-block: 3rem;
}

.faq-section__wrapper_grid {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-section__wrapper_grid-card {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--white));
  width: 100%;
  padding: 60px 40px;
  box-shadow: 0px 1px 10px rgba(var(--clr--black), 0.15);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.faq-section__wrapper_grid-card h3 {
  font-size: clamp(21px, 1.6vw, 36px);
  margin-bottom: 16px;
}

.faq-section__wrapper_grid-card a {
  display: inline-block;
}

.about-pacs {
  background-color: rgb(var(--clr--light--blue));
}

.about-pacs .titles {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.about-pacs .faq-section__wrapper_heading {
  color: rgb(var(--clr--white)) !important;
}

.about-pacs .faq-section__wrapper_sub-heading {
  color: rgb(var(--clr--white));
}

.membership-and-support .faq-section__wrapper_heading {
  margin-bottom: 3rem !important;
}

.governance-and-compliance {
  background-color: rgb(var(--clr--shaded--blue));
}

.governance-and-compliance .faq-section__wrapper {
  padding-top: 1.5rem;
}

.governance-and-compliance .faq-section__wrapper .titles {
  margin-bottom: 3rem;
}

.fundraising-and-finance .faq-section__wrapper_heading {
  margin-bottom: 3rem !important;
}

.advocacy-and-representation .faq-section__wrapper_heading {
  margin-bottom: 3rem !important;
}

.training-and-resources {
  background-color: rgb(var(--clr--green));
}

.training-and-resources .faq-section__wrapper_heading {
  color: rgb(var(--clr--white)) !important;
  margin-bottom: 4rem !important;
}

.events-and-communication {
  background-color: rgb(var(--clr--light--blue));
}

.events-and-communication .faq-section__wrapper_heading {
  color: rgb(var(--clr--white)) !important;
  margin-bottom: 4rem !important;
}

/* What do P&C Associations do? */
.what-do-pac {
  background-color: rgb(var(--clr--shaded--blue));
}

.what-do-pac .copy-content__wrapper_card {
  color: rgb(var(--clr--dark--blue));
}

.copy-content__wrapper_heading {
  color: rgb(var(--clr--dark--blue)) !important;
  margin-bottom: 2rem;
}

/* Who can join a P&C Association? */
.who-can-join .copy-content__wrapper {
  color: rgb(var(--clr--dark--blue));
}

/* We’re Here to Help */
.were-here-to-help {
  background-color: rgb(var(--clr--shaded--blue));
}

.were-here-to-help .copy-content__wrapper {
  color: rgb(var(--clr--dark--blue));
}

/* Resources */
.resources__wrapper {
  color: rgb(var(--clr--dark--blue));
}

.resources__wrapper_btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.resources__wrapper_btn {
  background-color: rgb(var(--clr--dark--blue));
  width: calc((100% / 2) - 15px);
  padding: 20px 40px !important;
}

.resources__wrapper_btn:hover {
  background-color: rgb(var(--clr--light--blue));
}

/* Resources to Get Started */
.resources-to-get__wrapper {
  color: rgb(var(--clr--dark--blue));
}

.resources-to-get__wrapper_grid {
  margin-top: 3rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.resources-to-get__wrapper_grid-card {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--white));
  width: 100%;
  padding: 35px;
  box-shadow: 0px 1px 10px rgba(var(--clr--black), 0.15);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
}

.resources-to-get__wrapper_grid-card:hover {
  background-color: rgb(var(--clr--shaded--blue));
}

.resources-to-get__wrapper_grid-card-heading {
  font-size: clamp(23px, 1.8vw, 36px);
}

.resources-to-get__wrapper_learn-button {
  font-size: 24px;
  background-color: rgb(var(--clr--dark--blue));
  padding: 15px !important;
  margin-top: 25px;
}

.resources-to-get__wrapper_learn-button:hover {
  background-color: rgb(var(--clr--light--blue));
}

/* Membership Benefits */
.membership-benefits {
  padding-block: 5rem;
}

.membership-benefits .copy-content__wrapper {
  color: rgb(var(--clr--dark--blue));
}

.copy-content__wrapper_sections {
  margin-top: 2rem;
}

/* P&C Executive Resources */
.pac-executive-resources {
  background-color: rgb(var(--clr--shaded--blue));
}

.resources-section__wrapper_heading {
  margin-bottom: 4rem;
}

.resources-section__wrapper_group-heading {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(23px, 1.8vw, 36px);
  text-align: center;
}

.resources-section__wrapper_group {
  margin-block: 5rem;
}

.resources-section__wrapper_group_resource-grid {
  margin-block: 2rem;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.resources-section__wrapper_group_resource-card {
  background: rgb(var(--clr--white));
  width: 100%;
  padding: 20px 50px;
  box-shadow: 0px 3px 6px rgba(var(--clr--black), 0.15);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}

.resources-section__wrapper_group_resource-details {
  width: calc(100% - 190px);
}

.resources-section__wrapper_group_resource-details img {
  width: 35px;
}

.resources-section__wrapper_group_resource-name {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(20px, 1.5vw, 32px);
  margin-top: 20px;
}

.resources-section__wrapper_group_pdf-download {
  width: 165px;
}

.resources-section__wrapper_group_pdf-size {
  color: rgb(112, 112, 112);
  text-align: right;
  display: block;
}

.resources-section__wrapper_group_download-button {
  font-size: 21px;
  background-color: rgb(var(--clr--dark--blue));
  width: 100%;
  min-width: unset;
  padding: 12px 25px !important;
  margin-top: 15px;
}

.resources-section__wrapper_group_download-button:hover {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--light--blue));
}

.download-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.download-toggle {
  cursor: pointer;
}

.download-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: rgb(var(--clr--white));
  border: 1px solid rgb(221, 221, 221);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(var(--clr--black), 0.08);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}

.download-list a {
  font-size: 17px;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: rgb(var(--clr--dark--blue));
  word-break: break-word;
}

.download-list a:hover {
  background: rgb(238, 238, 238);
}

.download-dropdown.active .download-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

/* Volunteers */
.volunteers-resources {
  background-color: rgb(var(--clr--shaded--blue));
}

.volunteers-resources .resources-section__wrapper_heading {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.volunteers-resources .resources-section__wrapper_group {
  margin: 0 !important;
}

/* Parents */
.parents-resources {
  background-color: rgb(var(--clr--shaded--blue));
}

.parents-resources .resources-section__wrapper_heading {
  margin-top: 0;
  margin-bottom: 1rem;
}

.parents-resources .resources-section__wrapper_group {
  margin-top: 0;
}

/* How P&C Queensland supports your business */
.how-pacq-supports .copy-content__wrapper {
  color: rgb(var(--clr--dark--blue));
}

/* Business & Service Resources */
.business-service-resources {
  background-color: rgb(var(--clr--shaded--blue));
}

.business-service-resources .resources-section__wrapper_heading {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.business-service-resources .resources-section__wrapper_group {
  margin: 0;
}

.business-service-resources .resources-section__wrapper_group .titles {
  margin-top: 6rem;
  margin-bottom: 3rem;
}

/* Annual Subscription Fees */
.annual-subscription-fees {
  background-color: rgb(var(--clr--shaded--blue));
}

.annual-subscription-fees .copy-content__wrapper_card {
  max-width: 100%;
}

.annual-subscription-fees .copy-content__wrapper_heading {
  margin-bottom: 10px;
}

.annual-subscription-fees .titles__sub-heading {
  text-align: left;
  max-width: unset;
  margin: 0 !important;
}

.annual-subscription-fees .copy-content__wrapper {
  color: rgb(var(--clr--dark--blue));
}

.copy-content__wrapper_table {
  margin-block: 1rem;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgb(var(--clr--dark--blue));
  overflow: hidden;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.copy-content__wrapper_table tr,
.copy-content__wrapper_table th,
.copy-content__wrapper_table td {
  border-color: rgb(var(--clr--dark--blue));
}

.copy-content__wrapper_table tr:last-child td {
  border-bottom: 0;
}

.copy-content__wrapper_table th,
.copy-content__wrapper_table td {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(19px, 1.5vw, 28px);
  white-space: nowrap;
  padding: 25px;
  border-right: 0;
  border-bottom: 1px solid rgb(var(--clr--dark--blue));
}

.copy-content__wrapper_table th:nth-of-type(1),
.copy-content__wrapper_table td:nth-of-type(1) {
  border-left: 0;
}

/* Tips for using our Services */
.tips-for-using {
  background-color: rgb(var(--clr--shaded--blue));
}

.tips-for-using .faq-section__wrapper_heading {
  margin-top: 5rem;
  margin-bottom: 2rem;
}

/* HR Resources */
.hr-support-resources {
  background-color: rgb(var(--clr--shaded--blue));
}

.hr-support-resources .resources-section__wrapper_group {
  margin-block: 3rem;
}

.hr-support-resources .resources-section__wrapper_group-heading {
  margin-bottom: 3rem;
}

.resources-section__wrapper_group_resource-grid-verticle{
  flex-direction: row;
  gap: 50px;
}

.resources-section__wrapper_group_resource-grid-verticle .resources-section__wrapper_group_resource-card {
  width: 50%;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.table-responsive {
  margin-bottom: 2rem;
}

/* Training & Events */
.upcoming-training-events__wrapper {
  color: rgb(var(--clr--dark--blue));
}

.upcoming-training-events__wrapper_btn-group {
  margin-top: 2rem;
  margin-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.upcoming-training-events__wrapper_btn {
  background-color: rgb(var(--clr--dark--blue));
  font-weight: 600 !important;
}

.upcoming-training-events__wrapper_btn:hover {
  background-color: rgb(var(--clr--light--blue));
  font-weight: 600 !important;
}

.upcoming-training-events__wrapper_grid {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.upcoming-training-events__wrapper.training-and-events .QueryTemplateSet {
  width: 1320px;
  padding-bottom: 90px;
  padding-inline: 12px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.upcoming-training-events__wrapper.training-and-events .QueryTemplateSet > .col {
padding: 0;
}

.upcoming-training-events__wrapper_grid_card {
  background-color: rgb(var(--clr--shaded--blue));
  width: 100%;
  padding: 20px 50px;
  cursor: pointer;
  border-left: 10px solid rgb(var(--clr--dark--blue));
  /* display: flex;
  align-items: center;
  gap: 20px; */
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
}

.upcoming-training-events__wrapper_grid_card-details {
  width: calc(100% - 230px);
}

.upcoming-training-events__wrapper_grid_card:hover {
  background-color: rgba(var(--clr--shaded--blue), .5);
}

.upcoming-training-events__wrapper_grid_card-title {
  font-size: clamp(23px, 1.8vw, 36px);
  margin-block: 1rem;
}

.upcoming-training-events__wrapper_grid_card-learn-button {
  text-decoration: none;
}

.upcoming-training-events__wrapper_grid_card-learn-button:hover {
  text-decoration: underline;
}

.upcoming-training-events .titles,
.upcoming-training-events .copy-content__wrapper_heading{
  margin: 0 !important;
}

.upcoming-training-events__wrapper_grid_card-cta {
  width: 210px;
}

.upcoming-training-events__wrapper_grid_card-register-button {
  text-decoration: none;
  width: 100%;
  min-width: unset;
  padding: 10px !important;
}

/* Nominations are now open */
.nominations-open-now {
  background-color: rgb(var(--clr--shaded--blue));
}

.nominations-open-now .resources-to-get__wrapper {
  margin-top: 5rem;
  margin-bottom: 10rem;
}

.nominations-open-now .resources-to-get__wrapper_grid-card:hover {
  background-color: rgba(var(--clr--white), .5);
}

/* Contact Us */
/* .inner-page-hero__contact-us .inner-page-hero__banner_copy_heading {
  margin-top: 3rem;
} */

.contact-details .icon-cards__wrapper_card-grid {
  margin-bottom: 0;
}

.contact-details .contact-form__wrapper {
  margin-bottom: 5rem;
}

.contact-details {
  background-color: rgb(var(--clr--shaded--blue));
}

.contact-details .icon-cards__wrapper_card:hover {
  background-color: rgba(var(--clr--white), .6);
}

.contact-form__wrapper {
  color: rgb(var(--clr--dark--blue));
  background-color: rgb(var(--clr--white));
  padding: 50px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.contact-form__wrapper_heading {
  width: 50%;
  margin-bottom: 2rem;
}

.contact-form__wrapper_form-container {
  display: flex;
  gap: 60px;
}

.contact-form__wrapper_form-container .container {
  padding: 0;
}

.contact-form__wrapper_form_collect-data {
  width: 50%;
}

.contact-form__wrapper_form_message-field {
  width: 50%;
}

.contact-form__privacy_form-check {
  padding-left: 35px;
}

.contact-form__privacy_check-label {
  position: relative;
}

.contact-form__privacy_checkbox {
  display: none;
}

.contact-form__privacy_checkmark {
  width: 22px;
  height: 22px;
  background-color: rgb(var(--clr--dark--blue));
  border: 1px solid rgb(var(--clr--dark--blue));
  position: absolute;
  top: 0;
  left: -25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: 0 0 2px 4px rgba(var(--clr--black),.05) inset
}

.contact-form__privacy_checkbox:checked ~ .contact-form__privacy_checkmark {
  background: rgb(var(--clr--dark--blue)) url("/images/PANDC2026/choice-tic.svg") no-repeat 4px 5px / 13px;
}

.contact-form__privacy_label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}

.contact-form__submit-button {
  background-color: rgb(var(--clr--green));
  width: 100%;
}

.contact-form__submit-button:hover {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--dark--blue));
}

.signup__container_form-wrapper_form_success {
  color: rgb(var(--clr--white));
  text-align: center;
  background: rgb(67, 149, 67);
  padding: 10px;
  margin-top: 15px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

/* Single Article */
.single-article-wrapper__thumbnail-wrapper {
  padding-block: 3rem;
}

.single-article-wrapper__thumbnail-wrapper img {
  width: unset !important;
  max-width: 100%;
  max-height: 460px;
  object-fit: contain;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.single-article-wrapper__text-content .ContentItemContainer p,
.single-article-wrapper__text-content .ContentItemContainer p span,
.single-article-wrapper__text-content .ContentItemContainer ul,
.single-article-wrapper__text-content .ContentItemContainer ul span,
.single-article-wrapper__text-content .ContentItemContainer ol,
.single-article-wrapper__text-content .ContentItemContainer ol span {
  font-family: var(--fnt--calibri) !important;
  font-size: unset !important;
  line-height: unset !important;
}

/* Search Results */
#ste_container_ciSearchresults {
  width: 1320px;
  padding-inline: 12px;
  margin: 130px auto 50px !important;
}

#ctl01_TemplateBody_WebPartManager1_gwpciSearchresults_ciSearchresults__BodyContainer {
  margin-top: 20px;
}

#ctl01_TemplateBody_WebPartManager1_gwpciSearchresults_ciSearchresults_lstSearchResults_Grid1_ctl00_ctl03_ctl01_PageSizeComboBox {
  width: 80px !important;
}

#ctl01_TemplateBody_WebPartManager1_gwpciSearchresults_ciSearchresults_lstSearchResults_Grid1_ctl00 td[role="gridcell"] {
  padding: 20px !important;
}

#ctl01_TemplateBody_WebPartManager1_gwpciSearchresults_ciSearchresults_SA_List,
#ctl01_TemplateBody_WebPartManager1_gwpciSearchresults_ciSearchresults_ST_Text {
  padding: 5px 10px;
}

#ctl01_TemplateBody_WebPartManager1_gwpciSearchresults_ciSearchresults_btnGoe46c2e1c {
  padding: 17px !important;
  border: 1px solid rgb(var(--clr--black));
}

.SearchResultSummary .ImageSection {
  width: 50px;
}

.SearchResultSummary .ImageSection img {
  max-width: 50px;
}

.SearchResultSummary .Description {
  margin-left: 65px;
}

/* Simple Content */
/* .simple-copy {
  padding-top: 120px;
} */

.simple-copy__content_flags {
  margin-block: 2rem;
}

.simple-copy__content_flags img {
  width: 100px;
  margin-inline: 15px;
}

.simple-copy__content p,
.simple-copy__content ul li,
.simple-copy__content ol li {
  font-size: clamp(19px, 1.1vw, 27px);
}

/* Publications */
.three-cards-w-title {
  background-color: rgb(var(--clr--shaded--blue));
}

.three-cards-w-title__wrapper_container {
  display: flex;
}

.three-cards-w-title__wrapper_container_card {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.three-cards-w-title__wrapper_container_card h3 {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(23px, 1.8vw, 36px);
}

.three-cards-w-title__wrapper_container_card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: rgb(var(--clr--white));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(var(--clr--black), 0.05);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.three-cards-w-title__wrapper_container_card-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
}

span.three-cards-w-title__wrapper_container_card-label {
  color: rgb(var(--clr--white));
  font-size: 16px;
  background-color: rgb(var(--clr--green));
  display: block;
  width: 300px;
  position: absolute;
  top: 65px;
  right: -65px;
  z-index: 9;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

/* Advertise with us */
.single-image-section {
  background-color: rgb(var(--clr--shaded--blue));
}

.single-image-section__wrapper p {
  color: rgb(var(--clr--dark--blue));
}

.single-image-section__wrapper_button {
  color: rgb(var(--clr--white)) !important;
  background-color: rgb(var(--clr--green));
  min-width: 450px;
  padding-block: 15px !important;
  margin: 4rem auto 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.single-image-section__wrapper_button:hover {
  background-color: rgb(var(--clr--dark--blue));
}

.list-section__wrapper ul li,
.list-section__wrapper ol li {
  color: rgb(var(--clr--dark--blue));
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Parent Talk */
.grid-section__wrapper_grid_card {
  padding: 10px;
}

/* Training */
.contain-units {
  background-color: rgb(var(--clr--dark--blue));
}

.contain-units:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--bgimg--units) no-repeat 100% 0% / contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.contain-units > * {
  position: relative;
}

.contain-units p,
.contain-units ul li,
.contain-units ol li {
  color: rgb(var(--clr--white));
  font-size: clamp(18px, 1vw, 27px);
}

/* Child Safe Standards Training */
.child-safe-standard:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--bgimg--child--safe) no-repeat 100% 0% / contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.child-safe-standard > * {
  position: relative;
}

.child-safe-standard__wrapper {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.child-safe-standard p,
.child-safe-standard ul li,
.child-safe-standard ol li {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(18px, 1vw, 27px);
}

.child-safe-standard .upcoming-training-events__wrapper_btn-group {
  margin-top: 2.5rem;
  margin-bottom: 0;
  justify-content: flex-start;
  gap: 20px;
}

.child-safe-standard .upcoming-training-events__wrapper_btn:hover {
  color: rgb(var(--clr--dark--blue));
}

.child-safe-standard .upcoming-training-events__wrapper_btn-group .btn-large {
  font-size: clamp(21px, 1.3vw, 28px);
}

.image-card-grid .how-we-can-help__wrapper_card-copy {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.image-card-grid .how-we-can-help__wrapper_card {
  justify-content: flex-start;
}

.image-card-grid .how-we-can-help__wrapper_card-copy img {
  width: 100% !important;
  max-width: 160px;
  height: 160px;
  object-fit: contain;
}

.image-card-grid .how-we-can-help__wrapper_card-heading {
  font-size: clamp(21px, 1.4vw, 36px);
}

/* Logo Carousel */
.logo-carousel__wrapper {
  width: calc(100% - 80px);
  margin: 0 auto;
}

/* Error 404 */
.error-message {
  padding-top: 150px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
}

.error-message__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.error-message__title {
  color: rgb(var(--clr--light--blue));
  font-size: clamp(60px, 7.5vw, 120px);
  font-weight: 900;
}

.error-message__back-button,.error-message__content p {
  font-size: 20px;
}

.error-message__back-button {
  font-weight: 700;
}

/* Footer */
.footer {
  background: rgb(var(--clr--dark--blue));
}

.footer__wrapper_contact-details {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer__wrapper_contact-details-wrapper {
  width: calc((100% / 2) - 10px);
}

.footer__wrapper_contact-details-wrapper_heading {
  color: rgb(var(--clr--white));
  font-size: 32px;
  margin-bottom: 40px;
}

.footer__wrapper_contact-details p {
  color: rgb(var(--clr--white));
  margin-block: 25px;
}

.footer__wrapper_contact-details-wrapper_social-grid {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.footer__wrapper_contact-details-wrapper_social-icon a {
  color: rgb(var(--clr--white));
  font-size: 36px;
  text-decoration: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__wrapper_contact-details-wrapper_social-icon a:hover i {
  color: rgb(var(--clr--light--blue));
}

.footer__wrapper_quick-links-wrapper {
  width: 480px;
}

.footer__wrapper_quick-links-wrapper_heading {
  color: rgb(var(--clr--white));
  font-size: 32px;
  margin-bottom: 40px;
}

.footer__wrapper_quick-links-wrapper_nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__wrapper_quick-links-wrapper_nav-links li {
  width: calc((100% / 2) - 5px);
}

.footer__wrapper_quick-links-wrapper_nav-links a {
  color: rgb(var(--clr--white));
  text-decoration: none;
}

.footer__wrapper_quick-links-wrapper_nav-links a:hover {
  text-decoration: underline;
}

.footer__wrapper_copyright {
  width: 100%;
  padding-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.footer__wrapper_copyright:before {
  content: "";
  width: 92vw;
  height: 1px;
  background-color: rgb(var(--clr--white));
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.footer__wrapper_copyright p {
  font-size: 21px;
  line-height: 1.3;
  margin: 0 !important;
}

.footer__wrapper_privacy-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer__wrapper_privacy-menu a {
  color: rgb(var(--clr--white));
  font-size: 21px;
  line-height: 1.3;
  display: block;
  text-decoration: none;
  padding-inline: 10px;
}

.footer__wrapper_privacy-menu a:hover {
  text-decoration: underline;
}

.ContentRecordPageButtonPanel {
  display: none !important;
}

.recruitment__wrapper_card {
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.recruitment__wrapper_card .how-we-can-help__wrapper_card-copy {
  flex-grow: unset;
}

.inner-page-hero__banner_copy--with-logo {
  display: flex;
  align-items: center;
  gap: 30px;
}

.inner-page-hero__banner_copy--with-logo img {
  width: 200px;
}

.inner-page-hero__banner_copy--with-logo .titles {
  margin: 0;
}

/* Directory */
.directory {
  background-color: rgb(var(--clr--shaded--blue));
}

.directory__wrapper_header {
  text-align: center;
}

.directory__wrapper_header_heading {
  color: rgb(var(--clr--dark--blue));
}

.directory__wrapper_header_search-input {
  width: 100%;
  max-width: 650px;
  padding: 15px 20px;
  margin: 0 auto;
  border: 1px solid rgb(var(--clr--dark--blue));
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
}

.directory__wrapper_header_search-input:focus {
  border: 1px solid rgb(var(--clr--green));
  outline: none;
  box-shadow: unset;
}

.directory__wrapper_results {
  width: 100%;
  max-width: 992px;
  margin: 3rem auto 0;
}

.directory__wrapper_result-item {
  color: rgb(var(--clr--dark--blue));
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  background-color: rgb(var(--clr--white));
  aspect-ratio: 1 / 1;
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.directory__no-results {
  color: rgb(var(--clr--dark--blue));
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  flex-basis: 100%;
}

.sponsors__wrapper_title {
  color: rgb(var(--clr--dark--blue));
  font-size: clamp(23px, 1.8vw, 36px);
  text-align: center;
  border-bottom: 1px solid rgb(var(--clr--dark--blue));
}

.sponsors__wrapper_content {
  margin-top: 3rem;
}

.sponsors__wrapper_content-item {
  text-align: center;
  padding: 30px 20px;
  background-color: rgb(var(--clr--shaded--blue));
  cursor: pointer;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.sponsors__wrapper_content-item_image {
  margin-bottom: 20px;
}

.sponsors__wrapper_content-item p {
  color: rgb(var(--clr--dark--blue));
  font-size: 21px;
}