/* ====== FONTS ====== */
@import url("https://use.typekit.net/yot3nqf.css");

:root {
    --clr--gray: 35, 31, 32; /* #231F20 */
    --clr--yellow: 239, 172, 20; /* #EFAC14 */
    --clr--green: 0, 81, 105; /* #005169 */
    --clr--blue: 17, 39, 75; /* #11274B */
    --clr--black: 0, 0, 0; /* #000000 */
    --clr--white: 255, 255, 255; /* #ffffff */

    --fnt--articulat: "articulat-cf", sans-serif;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}

::-webkit-scrollbar-track {
    background: rgb(var(--clr--white));
    box-shadow: inset 2px 2px 3px rgba(rgb(var(--clr--gray)), 0.4);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    background: rgb(var(--clr--yellow));
    box-shadow: inset 0px 0px 8px rgba(var(--clr--gray), 0.4);
}

html,
body {
    color: rgb(var(--clr--black));
    font-size: clamp(16px, 1vw, 22px);
    font-weight: 400;
    font-family: var(--fnt--articulat);
    line-height: 1.2;
    background: rgb(var(--clr--white));
    padding: 0 !important;
    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: 600;
}

h1 {
    font-size: clamp(32px, 2.5vw, 60px);
}

h2 {
    font-size: clamp(24px, 2.1vw, 48px);
}

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,
ul,
ol {
    font-size: clamp(16px, 1vw, 22px);
    line-height: 1.3;
}

p:nth-last-of-type(1) {
    margin-bottom: 0;
}

p:has(+ ul),
p:has(+ ol) {
    margin-bottom: .6rem !important;
}

.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%;
}

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,
.section-row-top,
.section-row-bottom {
    position: relative;
}

.section-row {
    padding-block: clamp(35px, 3.5vw, 60px);
}

.section-row-top {
    padding-top: clamp(35px, 3.5vw, 60px);
}

.section-row-bottom {
    padding-bottom: clamp(35px, 3.5vw, 60px);
}

.titles {
    margin-bottom: .75rem;
}

.titles > h2 {
    font-size: clamp(36px, 2.3vw, 82px);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-wrap: balance;
}

.titles__highlighter {
    color: rgb(var(--clr--yellow));
}

.titles__sub-heading {
    font-size: clamp(16px, 1.2vw, 36px);
    text-transform: unset;
    text-wrap: balance;
}

.fw100 {
    font-weight: 100;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw900,
strong {
    font-weight: 900;
}

.ls {
    letter-spacing: 1.5px;
}

.italic {
    font-style: italic;
}

.fnt--articulat {
    font-family: var(--fnt--articulat);
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ====== COLORS ====== */
.clr--gray {
    color: rgb(var(--clr--gray)) !important;
}

.clr--yellow {
    color: rgb(var(--clr--yellow)) !important;
}

.clr--green {
    color: rgb(var(--clr--green)) !important;
}

.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--gray {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--gray));
}

.bgclr--yellow {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--yellow));
}

.bgclr--green {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--green));
}

.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;
    padding: 5px 15px;
    margin-top: 20px;
    background-color: transparent;
    border: 1px solid rgb(var(--clr--black));
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

textarea.form-control {
    min-height: 200px;
}

.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--yellow));
    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: 1px solid rgb(var(--clr--yellow));
    -webkit-text-fill-color: rgb(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;
}

.popup-modal input:-webkit-autofill,
.popup-modal input:-webkit-autofill:hover,
.popup-modal input:-webkit-autofill:focus,
.popup-modal textarea:-webkit-autofill,
.popup-modal textarea:-webkit-autofill:hover,
.popup-modal textarea:-webkit-autofill:focus,
.popup-modal select:-webkit-autofill,
.popup-modal select:-webkit-autofill:hover,
.popup-modal select:-webkit-autofill:focus {
    -webkit-text-fill-color: rgb(var(--clr--white));
    box-shadow: 0 0 0px 1000px rgb(var(--clr--black)) inset;
    -webkit-box-shadow: 0 0 0px 1000px rgb(var(--clr--black)) inset;
}

::placeholder {
  color: rgb(var(--clr--black)) !important;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: rgb(var(--clr--black)) !important;
}

::-moz-placeholder {
  color: rgb(var(--clr--black)) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgb(var(--clr--black)) !important;
}

::-ms-input-placeholder {
  color: rgb(var(--clr--black)) !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.invalid-feedback {
    color: rgb(var(--clr--white));
    font-size: 13px;
    text-align: center;
    background-color: rgb(220, 53, 69);
    padding: 5px 10px;
}

/* ====== BUTTONS ====== */
.btn {
    font-size: clamp(16px, 1vw, 24px);
    font-weight: 900 !important;
    color: rgb(var(--clr--black));
    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;
    padding: 5px 30px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn:hover,
a:hover {
    text-decoration: none;
}

.btn-large {
    font-size: clamp(18px, 1.4vw, 41px);
    padding: 18px 60px;
    position: relative;
    z-index: 9;
}

.primary--btn {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--yellow));
    border: 2px solid rgb(var(--clr--yellow));
}

.primary--btn:hover,
.primary--btn:active,
.primary--btn:focus-visible {
    color: rgb(var(--clr--white)) !important;
    background-color: rgb(var(--clr--green)) !important;
    border: 2px solid rgb(var(--clr--green)) !important;
}

.primary--btn.disabled {
    color: rgb(var(--clr--black));
    background-color: rgba(var(--clr--yellow), 0.6);
    border-color: rgba(var(--clr--yellow), 0.6);
    cursor: not-allowed;
}

/* 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: 20px 5px;
    vertical-align: top;
    display: flex;
    justify-content: center;
}

.owl-item > * > * {
    opacity: .2;
}

.owl-item.active > * > * {
    opacity: 1;
}

.owl-nav {
    width: 100%;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next{
    font-size: 21px;
    color: rgb(var(--clr--yellow));
    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: 0;
}

.owl-nav button.owl-next{
    right: 0;
}

.owl-dots {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.owl-dots button.owl-dot {
    width: 35px;
    height: 5px;
    background: rgba(var(--clr--yellow), .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--yellow));
}

.owl-loaded .disabled {
    display: none;
}

/* ====== HEADER ====== */
.header {
    width: 100%;
    background-color: rgb(var(--clr--white));
    padding: 10px 0 !important;
    /* position: relative;
    z-index: 9; */
    box-shadow: 0 2px 10px rgba(var(--clr--black), 0.1);
    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));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(var(--clr--black), 0.1);
    transform: translateY(0);
}

.header__logo {
    max-width: 180px;
    padding: 10px 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: 120px;
    padding: 0;
}

.header__logo img {
    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 {
    position: relative;
}

.menu-item a {
    color: rgb(var(--clr--gray));
    font-size: clamp(16px, 1vw, 21px);
    font-weight: 900;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.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--black));
    position: absolute;
    right: 0;
    top: 15px;
}

.menu-item.current-menu-parent > a,
.menu-item.current-menu-item a,
.menu-item:hover a {
    color: rgb(var(--clr--yellow));
    text-decoration: underline;
    text-underline-offset: 5px;
}

.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--yellow));
}

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--green));
}

.nav-btn a {
    color: rgb(var(--clr--black)) !important;
    text-decoration: none;
    background-color: rgb(var(--clr--yellow));
    padding: 6px 25px !important;
    margin-left: 15px;
    border: 2px solid rgb(var(--clr--yellow));
    text-decoration: none !important;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    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--white)) !important;
    background-color: rgb(var(--clr--green));
    border: 2px solid rgb(var(--clr--green));
    text-decoration: none !important;
}

.nav-btn iframe {
    margin-left: 15px;
}

.header__navbar_toggler {
    border: 0;
}

.header__navbar_toggler:focus {
    box-shadow: unset;
}

.header__navbar_icon {
    background-color: rgb(var(--clr--blue));
    width: 32px;
    height: 3px;
    margin: 6px 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(7px, 7px);
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    -moz-transform: rotate(45deg) translate(7px, 7px);
    -ms-transform: rotate(45deg) translate(7px, 7px);
    -o-transform: rotate(45deg) translate(7px, 7px);
}

.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;
}

/* ====== Hero Section ====== */
.gutter-top {
    margin-top: 105px;
}

.hero-banner__container {
    background-color: rgb(var(--clr--black));
    width: 100%;
    position: relative;
    display: flex;
}

.hero-banner__media {
    width: 50%;
}

.hero-banner__media img,
.hero-banner__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-banner__content {
    width: 50%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-banner__content-wrapper {
    height: 100%;
    padding-block: 25px;
    padding-left: calc(50vw - 650px);
    background: url("/wp-content/uploads/2025/10/flower-white.svg") no-repeat -62.5px calc(100% - 25px) / 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-banner__content .hero-banner__hero-heading {
    color: rgb(var(--clr--white));
    font-size: clamp(28px, 1.8vw, 48px);
    font-weight: 900;
    width: fit-content;
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgb(var(--clr--yellow));
}

.hero-banner__content .hero-banner__hero-heading-large {
    color: rgb(var(--clr--white));
    font-size: clamp(24px, 3vw, 82px);
    padding-right: 2.5rem;
}

.hero-banner__content .hero-banner__hero-subheading {
    color: rgb(var(--clr--white));
    font-size: clamp(18px, 1.1vw, 32px);
    line-height: 1.1;
    font-weight: 400;
}

.hero-banner__content .hero-banner__hero-subheading-bold {
    font-size: clamp(19px, 1.8vw, 36px);
    font-weight: 900;
}

.hero-banner__hero-button {
    font-weight: 700 !important;
    padding-block: 8px;
    margin-top: 20px;
}

.hero-banner__video-player {
    position: relative;
    height: 100%;
}

.hero-banner__video-sound {
    font-size: 36px;
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--yellow));
    width: 75px;
    height: 75px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 9;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* INTRODUCTION */
.introduction__heading {
    color: rgb(var(--clr--green));
}

.introduction__row > * {
    font-size: clamp(18px, 1vw, 28px);
    text-align: center;
    text-wrap: balance;
}

.introduction__row > p {
    padding-inline: 75px;
}

/* OUR CAMPAIGNS */
.campaigns__heading {
    color: rgb(var(--clr--yellow));
    text-align: left !important;
}

.campaigns__carousel {
    margin-top: 25px;
    display: flex;
    gap: 35px;
}

.campaigns__carousel .owl-stage-outer {
    overflow: visible;
}

.campaigns__carousel .owl-item {
    pointer-events: none;
}

.campaigns__carousel .owl-item.active {
    pointer-events: all;
}

.campaigns__carousel_card {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.campaigns__carousel_card:nth-child(2) {
    width: 40%;
}

.campaigns__carousel_card-image-wrapper {
    position: relative;
}

.campaigns__carousel_card-image-wrapper:before {
    content: "";
    background: rgb(var(--clr--black));
    background: linear-gradient(0deg, rgba(var(--clr--black), .75) 0%, rgba(var(--clr--black), 0) 100%);
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.campaigns__carousel_card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.campaigns__carousel_card-image-lock {
    font-size: 36px;
    background: rgb(0, 0, 0, .8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.campaigns__carousel_card-copy {
    width: 100%;
    padding: 25px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.campaigns__carousel_card-content {
    padding: 20px 45px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.campaigns__carousel_card-heading {
    color: rgb(var(--clr--yellow));
    font-size: clamp(24px, 1.6vw, 48px);
    font-weight: 900;
    text-align: center;
}

.campaigns__carousel_card-heading span {
    font-size: clamp(21px, 1.4vw, 36px);
    font-weight: 400;
    display: block;
}

.btn.campaigns__carousel_card-btton {
    font-size: clamp(21px, 1.2vw, 36px);
    text-decoration: none;
    width: 280px;
    padding: 12px 30px;
    margin-inline: auto;
    justify-content: center;
}

/* OUR IMPACTS */
.impact__grid {
    display: flex;
    gap: 200px;
}

.impact__grid_copy {
    width: calc(100% - 400px);
}

.impact__grid_heading {
    color: rgb(var(--clr--green));
    text-align: left !important;
}

.impact__grid_copy > * {
    font-size: clamp(18px, 1.1vw, 28px);
}

.impact__grid_image > img {
    width: 200px;
}

.impact__progress-title {
    font-size: clamp(18px, 1.2vw, 28px);
    font-weight: 900;
}

.impact__progress-wrapper {
    position: relative;
    width: 100%;
}

.impact__progress-bar {
    width: 100%;
    background-color: rgb(var(--clr--blue));
    margin: 25px auto;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    box-shadow: inset 0px 0px 5px 0px rgba(var(--clr--black), 0.2);
    -webkit-box-shadow: inset 0px 0px 5px 0px rgba(var(--clr--black), 0.2);
    -moz-box-shadow: inset 0px 0px 5px 0px rgba(var(--clr--black), 0.2);
    position: relative;
    overflow: hidden;
}

.impact__progress-amount {
    background-color: rgb(var(--clr--yellow));
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    position: relative;
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -ms-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
}

.progress-value {
    font-size: clamp(18px, 1.2vw, 28px);
    font-weight: 900;
    color: rgb(var(--clr--black));
    position: absolute;
    top: 30px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.progress-max {
    font-size: clamp(18px, 1.2vw, 28px);
    font-weight: 900;
    color: rgb(var(--clr--black));
    text-align: right;
    width: 100%;
    position: absolute;
    top: 30px;
}

/* LATEST RESOURCES */
.resources__wrapper {
    display: flex;
    align-items: center;
    gap: 75px;
}

.resources__wrapper_image,
.resources__wrapper_copy {
    width: 50%;
}

.resources__wrapper_heading {
    color: rgb(var(--clr--yellow));
    text-align: left !important;
}

.resources__wrapper_copy > * {
    font-size: clamp(18px, 1.1vw, 28px);
    line-height: 1.1;
}

.resources__wrapper_download-button {
    width: 100%;
    padding: 15px 30px;
    margin-top: 35px;
    justify-content: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

/* STATS */
.stats-section {
    background-color: rgb(var(--clr--black));
}

.stats-section__grid {
    justify-content: space-between;
}

.stats-section__grid_card {
    text-align: center;
    background-color: rgb(var(--clr--white));
    width: calc((100% / 4) - 50px) !important;
    aspect-ratio: 1 / 1;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* .stats-section__grid_card:after {
    content: "";
    width: 100px;
    height: 100px;
    background: url("/wp-content/uploads/2025/10/flower-yellow.svg") no-repeat 50% 50% / contain;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 9;
    transform: translate(80%, -50%);
    -webkit-transform: translate(80%, -50%);
    -moz-transform: translate(80%, -50%);
    -ms-transform: translate(80%, -50%);
    -o-transform: translate(80%, -50%);
} */

.stats-section__grid_card:nth-of-type(4n + 4):after {
    display: none;
}

.stats-section__grid_card-value p {
    font-size: clamp(32px, 2.5vw, 60px);
    font-weight: 900;
}

.stats-section__grid_card-text p {
    line-height: 1;
}

/* TESTIMONIALS */
.testimonails__wrapper {
    display: flex;
    gap: 25px;
}

.testimonails__cover {
    width: 50%;
    height: 860px;
}

.testimonails__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonails__grid-wrapper {
    width: 50%;
    padding: clamp(35px, 2.5vw, 72px) calc(50vw - 650px) clamp(35px, 2.5vw, 72px) 1.5em;
}

.testimonials__grid {
    padding-block: 60px;
    position: relative;
    gap: 0;
}

.testimonials__grid::before {
    content: "";
    background: url("/wp-content/uploads/2025/10/quate-start-black.png") no-repeat 0 0 / contain;
    width: 60px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonials__grid::after {
    content: "";
    background: url("/wp-content/uploads/2025/10/quate-end-black.png") no-repeat 0 0 / contain;
    width: 60px;
    height: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.testimonials__grid_card {
    text-align: center;
    background-color: rgb(var(--clr--yellow));
    width: 50%;
    padding: 30px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonials__grid_card-heading {
    font-weight: 900;
}

.testimonials__grid_card-copy {
    font-size: clamp(16px, 1.15vw, 22px);
    line-height: 1.15;
    font-weight: 900;
}

.testimonials__grid_card-author {
    font-size: 17px;
    line-height: 1.1;
}

/* TAX CALCULATOR */
.compare-tax {
    background-color: rgb(var(--clr--yellow));
}

.compare-tax__wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.compare-tax__wrapper_map {
    width: 740px;
    position: relative;
}

.compare-tax__wrapper_form {
    text-align: center;
    width: calc(100% - 800px);
}

.compare-tax__wrapper_form-heading {
    /* font-size: clamp(32px, 2.5vw, 48px) !important; */
    margin-bottom: 20px;
}

.compare-tax__form {
    margin-block: 30px;
}

.compare-tax__form_input-group {
    border: 1px solid rgb(var(--clr--black));
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.compare-tax__form_input-group-text {
    font-weight: 700;
    background: transparent;
    padding: 0 10px;
    border: 0;
}

.compare-tax__form_input-group .form-control {
    background-color: transparent;
    padding-left: 0;
    margin: 0;
    border: 0;
}

.compare-tax__form_submit-button {
    color: rgb(var(--clr--yellow));
    background-color: rgb(var(--clr--black));
    border-color: rgb(var(--clr--black));
    width: 100%;
    padding: 6px;
    margin-top: 15px;
}

.compare-tax__form_bottom-header {
    /* font-size: clamp(32px, 2.5vw, 48px) !important; */
    font-weight: 900;
    text-wrap: balance;
    margin-bottom: 25px;
}

.compare-tax__form_bottom-header:last-child {
    color: rgb(var(--clr--white));
}

.compare-tax__wrapper_map-wrapper {
    position: relative;
}

.compare-tax__wrapper_map-image {
    width: 627px;
    max-width: 627px;
}

.compare-tax__wrapper_map-stats {
    text-align: center;
    background-color: rgb(var(--clr--white));
    width: fit-content;
    max-width: 230px;
    padding: 20px;
    border: 3px solid;
    position: absolute;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    box-shadow: 0px 3px 6px rgba(var(--clr--black), 0.16);
}

.compare-tax__wrapper_map-stats::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    border-width: 9px;
    border-style: solid;
    border-color: rgb(var(--clr--white)) transparent transparent transparent;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.compare-tax__wrapper_map-stats::before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 3px);
    border-width: 11px;
    border-style: solid;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.compare-tax__wrapper_map-stats-wa {
    padding: 35px 35px;
    border-color: rgb(var(--clr--yellow));
    top: 170px;
    left: 10px;
}

.compare-tax__wrapper_map-stats-wa::before {
    border-color: rgb(var(--clr--yellow)) transparent transparent transparent;
}

.compare-tax__wrapper_map-stats-nt {
    border-color: rgb(116, 142, 154);
    top: 60px;
    left: 235px;
}

.compare-tax__wrapper_map-stats-nt::before {
    border-color: rgb(116, 142, 154) transparent transparent transparent;
}

.compare-tax__wrapper_map-stats-qld {
    border-color: rgb(0, 81, 105);
    top: 150px;
    left: 420px;
}

.compare-tax__wrapper_map-stats-qld::before {
    border-color: rgb(0, 81, 105) transparent transparent transparent;
}

.compare-tax__wrapper_map-stats-sa {
    border-color: rgb(104, 173, 193);
    top: 275px;
    left: 250px;
}

.compare-tax__wrapper_map-stats-sa::before {
    border-color: rgb(104, 173, 193) transparent transparent transparent;
}

.compare-tax__wrapper_map-stats-vic {
    border-color: rgb(21, 142, 178);
    top: 435px;
    left: 525px;
}

.compare-tax__wrapper_map-stats-vic::after {
    left: -17px;
    top: 50%;
    border-color: transparent rgb(var(--clr--white)) transparent transparent;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.compare-tax__wrapper_map-stats-vic::before {
    left: -23px;
    top: 50%;
    border-color: transparent rgb(21, 142, 178) transparent transparent;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.compare-tax__wrapper_map-stats-nsw {
    border-color: rgb(17, 39, 75);
    top: 315px;
    left: 435px;
}

.compare-tax__wrapper_map-stats-nsw::before {
    border-color: rgb(17, 39, 75) transparent transparent transparent;
}

.compare-tax__wrapper_map-stats-tas {
    border-color: rgb(54, 109, 126);
    top: 510px;
    left: 300px;
}

.compare-tax__wrapper_map-stats-tas::after {
    left: 100%;
    top: 50%;
    border-color: transparent transparent transparent rgb(var(--clr--white));
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.compare-tax__wrapper_map-stats-tas::before {
    left: calc(100% + 2px);
    top: 50%;
    border-color: transparent transparent transparent rgb(54, 109, 126);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.compare-tax__wrapper_map-stats_heading {
    font-size: 15px;
    line-height: 1;
}

.compare-tax__wrapper_map-stats_count {
    font-size: clamp(28px, 1.6vw, 36px);
    font-weight: 900;
}

.compare-tax__wrapper_map-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--clr--yellow), 0.8);
    z-index: 10;
}

.compare-tax__wrapper_map-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgb(var(--clr--white));
    border-top: 4px solid rgb(var(--clr--blue));
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    -webkit-animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

/* SEND A LETTER */
.send-letter {
    background: url("/wp-content/uploads/2025/10/flower-black.svg") no-repeat calc(100% + 62.5px) 50% / 125px;
}

.send-letter__row {
    position: relative;
    align-items: center;
}

form.send-letter__form {
    position: relative;
}

.send-letter__title {
    color: rgb(var(--clr--yellow));
    text-align: left !important;
}

.send-letter__description p {
    font-size: clamp(18px, 1.1vw, 28px);
    text-align: left;
}

.send-letter__description {
    width: 100%;
    /* max-width: 480px; */
    padding: 0;
    margin: 35px 0;
}

.send-letter__loader-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(var(--clr--white), .65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    top: 0;
    left: 0;
    z-index: 9999;
}

.send-letter__loader {
    width: 60px;
    aspect-ratio: 1;
    display: flex;
    color: rgb(var(--clr--green));
    border: 4px solid;
    box-sizing: border-box;
    border-radius: 50%;
    background: radial-gradient(circle 5px, currentColor 95%, rgba(var(--clr--blue), 0)), linear-gradient(currentColor 50%, rgba(var(--clr--blue), 0) 0) 50%/4px 60% no-repeat;
    animation: dloader 2s infinite linear;
    -webkit-animation: dloader 2s infinite linear;
}

.send-letter__loader:before {
    content: "";
    flex: 1;
    background:linear-gradient(currentColor 50%, rgba(var(--clr--blue), 0) 0) 50%/4px 80% no-repeat;
    animation: inherit;
}

.send-letter__loader-wrapper p {
    color: rgb(var(--clr--green));
}

@keyframes dloader {
    100% {
        transform: rotate(1turn);
        -webkit-transform: rotate(1turn);
        -moz-transform: rotate(1turn);
        -ms-transform: rotate(1turn);
        -o-transform: rotate(1turn);

    }
}

.send-letter__to-premier {
    background: rgb(var(--clr--black));
    padding: 35px;
    border-radius: 25px;
}

.send-letter__to-premier_heading {
    color: rgb(var(--clr--yellow));
    font-size: clamp(24px, 1.5vw, 36px);
    font-weight: 900;
    text-align: center;
}

.textarea-wrapper {
    background-color: rgb(var(--clr--white));
    min-height: 320px;
    max-height: 550px;
    padding: 20px;
    margin-top: 25px;
    overflow: auto;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.send-letter__agreement {
    font-size: 17px;
    margin-top: 30px;
}

.send-letter__agreement_input {
    border-color: rgb(var(--clr--blue));
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

.send-letter__agreement_input:focus {
    box-shadow: none;
}

.send-letter__footer-copy {
    text-align: left;
    vertical-align: middle;
    width: 100%;
}

.send-letter__footer-copy a {
    color: rgb(var(--clr--yellow));
    font-weight: 900;
    text-decoration: none;
}

.send-letter__footer-copy a:hover {
    color: rgb(var(--clr--green));
}

.send-letter__sign-button {
    color: rgb(var(--clr--yellow)) !important;
    background-color: rgb(var(--clr--black));
    border-color: rgb(var(--clr--black));
    width: 100%;
    /* max-width: 550px; */
    padding: 10px;
    /* margin-top: 20px; */
}

/* HAVE YOUR SAY */
.cmm-have-your-say--form {
    padding: 35px 65px 35px 35px;
    border: 1px solid rgb(var(--clr--black));
    position: relative;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.cmm-have-your-say--form:after {
    content: "";
    width: 75px;
    height: 75px;
    background-color: rgb(var(--clr--yellow));
    position: absolute;
    top: 60px;
    right: 0;
    transform: translateX(50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translateX(50%, 0);
    -moz-transform: translateX(50%, 0);
    -ms-transform: translateX(50%, 0);
    -o-transform: translateX(50%, 0);
}

.cmm-have-your-say-title {
    /* font-size: clamp(24px, 2.1vw, 48px); */
    font-weight: 900;
    color: rgb(var(--clr--green));
}

.cmm-have-your-say__submit-button {
    color: rgb(var(--clr--yellow));
    background-color: rgb(var(--clr--black));
    width: 100%;
    max-width: 380px;
    padding: 15px;
    margin-top: 30px;
    border-color: rgb(var(--clr--black));
}

.cmm-have-your-say__return-message {
    width: 100%;
    height: 100%;
    background: rgb(var(--clr--white), .9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.cmm-have-your-say__return-message-wrapper {
    text-align: center;
    background-color: rgb(var(--clr--black));
    width: 90%;
    max-width: 768px;
    padding: 4.5rem 2rem;
    margin-inline: auto;
    position: absolute;
    top: 50%;
    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%);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.cmm-have-your-say__return-message_heading {
    color: rgb(var(--clr--yellow));
    font-weight: 900;
    text-transform: uppercase;
    text-wrap: balance;
    margin-bottom: 15px;
}

.cmm-have-your-say__return-message_text {
    color: rgb(var(--clr--white));
    font-size: clamp(18px, 1.2vw, 28px);
}

.cmm-have-your-say__return-message_close-button {
    color: rgb(var(--clr--white));
    background: none;
    position: absolute;
    top: 20px;
    right: 20px;
}

.cmm-have-your-say__return-message_close-button:hover {
    color: rgb(var(--clr--white));
    background: none;
}

.cmm-have-your-say__return-message_close-button:focus {
    box-shadow: none;
}

.cmm-have-your-say-form__letter textarea.form-control {
    padding: 20px;
}

.cmm-send-letter__submit-button {
    color: rgb(var(--clr--yellow));
    background-color: rgb(var(--clr--black));
    border-color: rgb(var(--clr--black));
    width: 100%;
    max-width: 480px;
    padding: 10px;
    margin-top: 20px;
}

.have-your-say-popup-modal {
    background-color: rgba(var(--clr--white), .85) !important;
}

.have-your-say-popup-modal .popup-modal__content_header-title {
    text-wrap: balance;
}

/* CHIEF'S MESSAGE */
.chief-message__quote-column {
    display: flex;
    align-items: center;
    gap: 50px;
}

.chief-message__quote-wrapper {
    width: 40%;
}

.chief-message__description-wrapper {
    width: 60%;
}

.chief-message__quote {
    padding: 60px 25px;
    position: relative;
}

.chief-message__quote::before {
    content: "";
    background: url("/wp-content/uploads/2025/10/quate-start-green.png") no-repeat 0 0 / contain;
    width: 60px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.chief-message__quote::after {
    content: "";
    background: url("/wp-content/uploads/2025/10/quote-end-green.png") no-repeat 0 0 / contain;
    width: 60px;
    height: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.chief-message__quote p {
    font-size: clamp(18px, 1.35vw, 36px);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.chief-message__quote-person {
    text-align: center;
    margin-top: 35px;
}

.chief-message__description p {
    font-size: clamp(16px, 1vw, 24px);
    line-height: 1.1;
    text-align: center;
    text-wrap: balance;
}

.chief-message__description {
    margin-bottom: 50px;
}

.chief-message__description-icon {
    width: 90px;
    margin-inline: auto;
    display: block;
}

/* TOGETHER WE'RE */
.together-we {
    border-top: 15px solid rgb(var(--clr--green));
}

.together-we__image {
    width: 93vw;
    margin-inline: auto;
    display: block;
}

/* KEEPING STRONG */
.keeping-strong {
    background: rgb(var(--clr--black)) url("/wp-content/uploads/2025/10/flower-yellow.svg") no-repeat -62.5px 50% / 125px;
    border-top: 15px solid rgb(var(--clr--yellow));
}

.keeping-strong__social-grid-wrapper {
    width: 340px;
    margin-left: auto;
    justify-content: flex-end;
}

.keeping-strong .titles {
    margin: 0;
}

.keeping-strong__heading {
    color: rgb(var(--clr--yellow));
    text-align: left !important;
}

.keeping-strong__social-grid_social-icon a {
    color: rgb(var(--clr--white));
    font-size: 48px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background-color: rgb(var(--clr--black));
    border: 3px solid rgb(var(--clr--yellow));
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.keeping-strong__social-grid_social-icon a:hover {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--yellow));
}

.keeping-strong__social-grid_social-icon a.copied::after {
    content: "Copied!";
    position: absolute;
    top: -25px;
    left: 50%;
    background: rgb(var(--clr--white));
    color: rgb(var(--clr--black));
    font-size: 12px;
    padding: 4px 8px;
    opacity: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    animation: fadeOut 1s ease forwards;
    -webkit-animation: fadeOut 1s ease forwards;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        -webkit-transform: translateX(-50%) translateY(0);
        -moz-transform: translateX(-50%) translateY(0);
        -ms-transform: translateX(-50%) translateY(0);
        -o-transform: translateX(-50%) translateY(0);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
        -webkit-transform: translateX(-50%) translateY(-5px);
        -moz-transform: translateX(-50%) translateY(-5px);
        -ms-transform: translateX(-50%) translateY(-5px);
        -o-transform: translateX(-50%) translateY(-5px);
    }
}

/* RESOURCES PAGE */
.resources-tab__wrapper_nav-tabs {
    border-bottom: 4px solid rgb(var(--clr--green));
    flex-wrap: nowrap;
    overflow: auto;
}

.resources-tab__wrapper_nav-link {
    color: rgb(var(--clr--green)) !important;
    font-weight: 600;
    white-space: nowrap;
    background-color: rgb(var(--clr--white)) !important;
    width: 200px;
    margin-bottom: 0 !important;
    border: 1px solid rgb(var(--clr--green)) !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.resources-tab__wrapper_nav-item:last-child .resources-tab__wrapper_nav-link {
    border-right: 1px solid rgb(var(--clr--green)) !important;
}

.resources-tab__wrapper_nav-link.active {
    background-color: rgb(var(--clr--yellow)) !important;
}

.resources-tab__wrapper_tab-pane-wrapper {
    padding: 40px 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.resources-tab__wrapper_tab-pane-copy {
    width: calc(100% - 630px);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.resources-tab__wrapper_tab-pane-copy-icon {
    width: 50px;
}

.resources-tab__wrapper_tab-pane-title > * {
    color: rgb(var(--clr--green));
    font-size: clamp(28px, 1.6vw, 42px) !important;
    text-align: left !important;
    margin: 0;
}

.resources-tab__wrapper_tab-pane-title {
    margin: 0;
}

.resources-tab__wrapper_tab-pane-thumbnail {
    width: 605px;
    aspect-ratio: 605 / 403;
    background-color: rgba(var(--clr--yellow), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 6px 0px rgba(var(--clr--black), 0.25) inset;
    -webkit-box-shadow: 2px 2px 6px 0px rgba(var(--clr--black), 0.25) inset;
    -moz-box-shadow: 2px 2px 6px 0px rgba(var(--clr--black), 0.25) inset;
}

.resources-tab__wrapper_tab-pane-btn-wrapper {
    padding: 0;
    display: flex;
    gap: 20px;
}

.resources-tab__wrapper_tab-pane-btn-wrapper > * {
    width: 50%;
    padding: 13px 25px;
    justify-content: center;
}

/* FOOTER */
.footer__logos {
    margin-bottom: 35px;
}
.footer__logo-wrapper {
    display: flex;
    gap: 25px;
}

.footer__logo-wrapper img {
    width: 100%;
    max-width: 150px;
}

.footer__heading {
    font-size: 27px;
    font-weight: 700;
    color: rgb(var(--clr--yellow));
    margin-bottom: 10px;
}

footer p {
    font-size: 17px;
    text-wrap: balance;
}

.footer__flags {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.footer__copyrights {
    text-align: right;
}

.footer__grid-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.footer__subscribe-button {
    padding-inline: 65px;
}

.footer__social-grid-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.footer__social-grid_social-icon a {
    color: rgb(var(--clr--white));
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgb(var(--clr--black));
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer__social-grid_social-icon a:hover {
    background-color: rgb(var(--clr--green));
}

.footer__legal-links {
    font-size: 17px;
    list-style: none;  
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

/* POPUP MODAL */
.popup-modal {
    background-color: rgba(var(--clr--green), .75);
}

.popup-modal__content {
    background-color: rgb(var(--clr--black));
    padding: 60px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.popup-modal__content-success {
    text-align: center;
}

.popup-modal__content_header {
    color: rgb(var(--clr--yellow));
    padding: 0;
    border: 0;
    justify-content: center;
}

.popup-modal__content_header-title {
    font-size: clamp(21px, 2.2vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    width: 100%;
}

.popup-modal__content_close-button {
    color: rgb(var(--clr--white));
    background: none;
    position: absolute;
    top: 20px;
    right: 20px;
}

.popup-modal__content_close-button:hover {
    color: rgb(var(--clr--white));
    background: none;
}

.popup-modal__content_close-button:focus {
    box-shadow: none;
}

.popup-modal__content_body {
    padding: 15px 0;
}

.popup-modal__content_body p {
    font-size: clamp(16px, 1.2vw, 22px);
    color: rgb(var(--clr--white));
}

.popup-modal__content_body-form .form-control {
    color: rgb(var(--clr--white)) !important;
    border-color: rgb(var(--clr--white));
}

.popup-modal__content_body-form .form-control:focus {
    color: rgb(var(--clr--black)) !important;
}

.popup-modal__content_body-form ::placeholder {
  color: rgb(var(--clr--white)) !important;
  opacity: 1;
}

.popup-modal__content_body-form ::-webkit-input-placeholder {
  color: rgb(var(--clr--white)) !important;
}

.popup-modal__content_body-form ::-moz-placeholder {
  color: rgb(var(--clr--white)) !important;
  opacity: 1;
}

.popup-modal__content_body-form :-ms-input-placeholder {
  color: rgb(var(--clr--white)) !important;
}

.popup-modal__content_body-form ::-ms-input-placeholder {
  color: rgb(var(--clr--white)) !important;
}

.popup-modal__content_submit-button {
    font-size: clamp(21px, 1.35vw, 36px);
    width: 100%;
    padding-block: 15px;
    margin-top: 20px;
    justify-content: center;
}

.popup-modal__content_back-button {
    font-size: clamp(21px, 1.35vw, 36px);
    width: 250px;
    padding-block: 10px;
    margin: 20px auto 0;
    justify-content: center;
}

/* ====== 404 ====== */
.error-message {
    min-height: 75vh;
    padding-top: 100px;
    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--yellow));
    font-size: clamp(48px, 7.5vw, 120px);
    font-weight: 900;
}