/* ====== FONTS ====== */
@import url('https://fonts.cdnfonts.com/css/avenir');
@import url('https://fonts.cdnfonts.com/css/satoshi');

@font-face {
    font-family: 'Gordita';
    src: url("../fonts/GorditaRegular.otf"), url("../fonts/GorditaRegularItalic.otf");
    font-weight: 400;
}

@font-face {
    font-family: 'Gordita';
    src: url("../fonts/GorditaMedium.otf"), url("../fonts/GorditaMediumItalic.otf");
    font-weight: 500;
}

@font-face {
    font-family: 'Gordita';
    src: url("../fonts/GorditaBold.otf"), url("../fonts/GorditaBoldItalic.otf");
    font-weight: 700;
}

@font-face {
    font-family: 'Gordita';
    src: url("../fonts/GorditaBlack.otf"), url("../fonts/GorditaBlackItalic.otf");
    font-weight: 900;
}

:root {
    --clr--gray: 91, 90, 90; /* #5B5A5A */
    --clr--light--gray: 238, 238, 238; /* #EEEEEE */
    --clr--red: 218, 49, 35; /* #DA3123 */
    --clr--black: 0, 0, 0; /* #000000 */
    --clr--white: 255, 255, 255; /* #ffffff */

    --fnt--gordita: "Gordita", sans-serif;
    --fnt--avenir: "Avenir", sans-serif;
    --fnt--satoshi: "Satoshi", sans-serif;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgb(var(--clr--red));
    box-shadow: inset 0px 0px 8px rgba(var(--clr--gray), 0.4);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

html,
body {
    color: rgb(var(--clr--black));
    font-size: 18px;
    font-weight: 400;
    font-family: var(--fnt--gordita);
    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: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 21px;
}

h6 {
    font-size: 18px;
}

p,
ul,
ol {
    font-size: 18px;
    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: 20px;
}

.section-row-top {
    padding-top: 20px;
}

.section-row-bottom {
    padding-bottom: 20px;
}

.titles {
    margin-bottom: .75rem;
}

.fullwidth-titles {
    background-color: rgb(var(--clr--gray));
    padding: 12px 25px;
}

.titles > * {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
}

.fullwidth-titles > * {
    color: rgb(var(--clr--white));
    font-size: 18px !important;
    font-weight: 500;
}

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

.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--gordita {
    font-family: var(--fnt--gordita);
}

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

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

/* 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--light--gray {
    color: rgb(var(--clr--light--gray)) !important;
}

.clr--red {
    color: rgb(var(--clr--red)) !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--light--gray {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--light--gray));
}

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

.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: 16px;
    font-weight: 400;
    line-height: 1.3;
    min-height: 30px;
    padding: 13px 20px;
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--white));
    box-shadow: inset 0px 3px 6px rgba(var(--clr--black), 0.16) !important;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

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

::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: left;
    background-color: rgb(var(--clr--red));
    padding: 5px 10px;
}

/* ====== BUTTONS ====== */
.btn {
    font-size: 18px;
    font-weight: 500 !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: 10px 30px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

.btn-large {
    font-size: 24px;
    padding: 12px 30px;
    position: relative;
    z-index: 9;
}

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

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

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

/* Grid laout */
.grid-two,
.grid-three,
.grid-four {
    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);
}

/* 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: 15px;
    color: rgb(var(--clr--red));
    font-weight: 700;
    background-color: rgb(var(--clr--light--gray));
    width: 25px;
    height: 25px;
    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%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

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

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

.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;
    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: 221px;
    padding: 0;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

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

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

/* ====== NAVIGATION ====== */
.header__navbar_collapse {
    justify-content: flex-end;
    background-color: rgb(var(--clr--gray));
}

.header__navbar {
    justify-content: space-between;
    align-items: flex-end;
}

.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;
    gap: 20px;
}

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

.menu-item {
    position: relative;
}

.menu-item a {
    color: rgb(var(--clr--white));
    font-family: var(--fnt--avenir);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    padding: 29px 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--white));
    position: absolute;
    right: 0;
    top: 30px;
}

.menu-item.current-menu-parent > a,
.menu-item.current-menu-item a,
.menu-item:hover a {
    color: rgb(var(--clr--white));
    text-decoration: underline;
    text-underline-offset: 3px;
}

li.menu-item ul.sub-menu {
    width: 250px;
    padding: 0;
    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: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

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: 15px;
    display: block;
}

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

.nav-btn a {
    color: rgb(var(--clr--black)) !important;
    text-decoration: none;
    background-color: rgb(var(--clr--red));
    padding: 6px 25px !important;
    margin-left: 15px;
    border: 2px solid rgb(var(--clr--red));
    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--red));
    border: 2px solid rgb(var(--clr--red));
    text-decoration: none !important;
}

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

.header__navbar_toggler {
    background-color: rgb(var(--clr--gray));
    width: calc(100% - 180px);
    padding: 13.5px 20px;
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

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

.header__navbar_icon {
    background-color: rgb(var(--clr--white));
    width: 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;
}

/* ====== Hero ====== */
.hero__banner {
    display: flex;
    gap: 20px;
}

.hero__banner_right {
    background: var(--hero--banner) no-repeat center center / cover;
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    position: relative;
}

.hero__banner_right:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(var(--clr--black), .75);
    position: absolute;
    top: 0;
    left: 0;
}

.hero__banner_right > * {
    position: relative;
}

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

.hero__banner_right-copy {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.hero__banner_right-copy * {
    color: rgb(var(--clr--white));
}

.hero__banner_left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__banner_left-media {
    position: relative;
}

.hero__banner_left-media_video,
.hero__banner_left-media_image {
    width: 100%;
    display: block;
}

.hero__banner_left-media_video-control {
    font-size: 21px;
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--light--gray));
    width: 45px;
    height: 45px;
    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%;
}

.hero__banner_left-media_image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero__banner_left-cta {
    background-color: rgb(var(--clr--red));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero__banner_left-cta-copy {
    margin: 0;
}

.hero__banner_left-cta-title {
    color: rgb(var(--clr--white));
    margin: 0;
}

.hero__banner_left-cta-button {
    background-color: rgb(var(--clr--black));
}

/* ====== Banner ====== */
.banner__wrapper {
    min-height: 500px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    position: relative;
}

.banner__wrapper:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--banner--img) no-repeat center center / cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.banner__wrapper_copy {
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.banner__wrapper_copy-maincopy p {
    font-size: 22px;
    font-weight: 500;
}

.banner__wrapper_copy-subcopy p {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.banner__wrapper_button {
    width: 100%;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.banner__wrapper_logo {
    width: 160px;
    position: relative;
}

/* ====== About the Issue ====== */
.about-issue__wrapper {
    margin-block: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.about-issue__wrapper_copy {
    width: 50%;
    max-width: 500px;
}

.about-issue__wrapper_copy-heading {
    margin-bottom: 3rem;
}

.about-issue__wrapper_banner {
    background: var(--impacted--banner) no-repeat center center / cover;
    width: 50%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.about-issue__wrapper_banner * {
    color: rgb(var(--clr--white));
}

.about-issue__wrapper_banner-heading {
    width: 350px;
    padding: 100px 20px 30px 50px;
    display: flex !important;
    flex-direction: column;
    gap: 20px;
}

.about-issue__wrapper_banner-qoute {
    background: url("https://councilconsultations.com.au/wp-content/uploads/2025/11/are-you-impacted-quote.png") no-repeat top right / 430px 354px;
    width: 340px;
    padding: 175px 20px 20px 130px;
}

.about-issue__wrapper_banner-qoute-maincopy {
    font-size: 32px;
    margin-bottom: 12px;
}

/* ====== DID YOU KNOW ====== */
.did-you-know__wrapper_title {
    text-align: center;
    font-weight: 900;
    max-width: 500px;
    margin-inline: auto;
}

.did-you-know__wrapper_card-icon {
    max-width: 275px;
    height: 170px;
    margin: 20px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.did-you-know__wrapper_card-icon img {
    max-width: 150px;
    max-height: 150px;
}

.did-you-know__wrapper_card-icon-text * {
    color: rgb(var(--clr--gray));
    font-size: 36px;
    font-weight: 500;
}

.did-you-know__wrapper_card-icon-text strong {
    font-weight: 700;
}

.did-you-know__wrapper_card-copy {
    max-width: 350px;
    margin-inline: auto;
}

.did-you-know__wrapper_card-copy * {
    color: rgb(var(--clr--gray));
    font-size: 23px;
    font-weight: 500;
    text-align: center;
}

.did-you-know__wrapper_card-copy > * {
    text-wrap: balance;
}

.did-you-know__wrapper_card-copy strong {
    font-weight: 700;
}

/* ====== SHARE YOUR STORY ====== */
.comments__wrapper {
    margin-top: 40px;
    display: flex;
    gap: 40px;
}

.comments__wrapper_heading {
    width: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.comments__wrapper_heading-icon {
    width: 60px;
}

.comments__wrapper_heading-title {
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 30px 0;
}

.comments__wrapper_card-wrapper {
    width: calc(100% - 270px);
    overflow: hidden;
}

.comments__wrapper_card-wrapper .owl-stage {
  padding-left: 0 !important;
}

.comments__wrapper_card {
    background-color: rgb(var(--clr--light--gray));
    width: 100%;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
}

.owl-item:nth-of-type(2n + 2) .comments__wrapper_card {
    background-color: rgb(var(--clr--red));
}

.comments__wrapper_card * {
    font-size: 17px;
}

.owl-item:nth-of-type(2n + 2) .comments__wrapper_card * {
    color: rgb(var(--clr--white));
}

/* ====== SHARE YOUR STORY ====== */
.share-your-story__wrapper {
    background-color: rgb(var(--clr--black));
    padding: 60px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 60px;
}

.share-your-story__wrapper_copy {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.share-your-story__wrapper_copy-title {
    color: rgb(var(--clr--red));
    font-size: 28px;
}

.share-your-story__wrapper_copy-wrapper * {
    color: rgb(var(--clr--white));
}

.share-your-story__wrapper_copy-quote {
    padding-left: 35px;
    margin-block: 30px;
}

.share-your-story__wrapper_copy-quote * {
    font-style: italic;
}

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

.share-your-story__wrapper_form_submit-button {
    margin-inline: auto;
}

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

.form-check-label {
    color: rgb(var(--clr--white));
    font-size: 16px;
    vertical-align: text-bottom;
}

.share-your-story__wrapper_form_submit_success {
    background-color: transparent;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0;
    border-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.share-your-story__wrapper_form_submit_success::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.share-your-story__wrapper_form_success-wrapper {
    background-color: rgb(var(--clr--white));
    width: 90%;
    max-width: 700px;
    padding: 75px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: opacity 0.8s ease;
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
}

.share-your-story__wrapper_form_submit_success h3,
.share-your-story__wrapper_form_submit_success p {
    color: rgb(var(--clr--black));
}

.share-your-story__wrapper_form_success-wrapper_close-button {
    color: rgb(var(--clr--black));
    font-size: 18px;
    background-color: transparent;
    padding: 15px;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.share-your-story__wrapper_form_submit_error {
    text-align: center;
}

/* ====== SINGLE ARTICLE ====== */
.common-content {
    min-height: calc(100vh - 328px);
    margin-bottom: 35px;
}

.common-content__container * {
    font-family: var(--fnt--avenir);
}

.common-content__container h3 {
    font-weight: 500;
    margin: 30px 0 15px;
}

.common-content__container h4 {
    font-weight: 500;
    margin: 15px 0;
}

.common-content__container strong {
    font-weight: 500;
}

/* ====== 404 ====== */
.error-message {
    min-height: calc(100vh - 328px);
    margin-bottom: 35px;
    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--red));
    font-size: 120px;
    font-weight: 900;
}

/* ====== FOOTER ====== */
.footer {
    background: rgb(var(--clr--black));
    padding-block: 40px;
}

.footer__copyright {
    color: rgb(var(--clr--white));
    font-size: 15px;
    text-align: center;
}

.footer__copyright a {
    display: inline-block;
}

.footer__social-grid {
    width: 60px;
    margin: 20px auto 0;
}

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

.footer__social-grid_icon-in {
    font-size: 19px;
}

.footer__social-grid_icon:hover {
    color: rgb(var(--clr--red));
}

.modal-backdrop {
    display: none;
}