* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --background-color: #ebeaed;
    --main-color: gray;
    --main-color-green: #31ac68;
    --main-color-green-dark: #134c24;
    --main-color-red: #d61d28;
    --main-color-lightred: #ffc0c0;
    --second-color: #363636;
}

@font-face {
    font-family: "inter";
    src: url(./fonts/Inter/Inter-VariableFont_opsz.ttf);
    font-display: swap;
}

::selection {
    color: white;
    background-color: #31ac68;
}

/* * -------------Settings------------------------------ */

body {
    font-family: "inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
}

a,
a:active {
    color: #011627ab;
}

a:hover {
    text-decoration: none;
}

h1 {
    font-size: 2rem;
    text-align: center;
    text-wrap: pretty;
    margin-bottom: 25px;
    color: white;
    font-family: "inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
}

h2 {
    font-size: clamp(28px, 3vw, 34px);
    padding-top: 30px;
    text-align: center;
    color: var(--main-color-green-dark);
    margin: 65px 0px 50px;
    font-family: "inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--main-color-green);
    text-transform: uppercase;
}

p {
    line-height: 30px;
}

p,
li {
    font-size: clamp(16px, 2vw, 1rem);
    font-family: "inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
    text-wrap: pretty;
    color: #011627ab;
}

li {
    margin-bottom: 14px;
}

ul {
    margin-left: 2rem;
}

button {
    padding: 14px 25px;
    font-weight: 500;
    font-size: 20px;
    background-color: var(--main-color-green);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0px 4px 12px 0px rgba(73, 73, 73, 0.48);
    cursor: pointer;
    transition: 0.15s ease-out;
}

button.active {
    background-color: var(--main-color-green-dark);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

#btn1,
input[type="submit"] {
    padding: 18px 30px;
    font-weight: 500;
    font-size: 20px;
    background-color: var(--main-color-green);
    color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 12px 0px rgba(73, 73, 73, 0.48);
    cursor: pointer;
    transition: 0.15s ease-out;
}

#btn1:hover,
input[type="submit"]:hover {
    opacity: 0.8;
    transform: translateX(5px);
    transition: 0.15s ease-out;
}

#btn1 a {
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: clamp(14px, 2vw, 18px);
}

/* *------------NAV & Header----------------------------- */

.nav {
    position: absolute;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 10;
}

.nav img {
    height: 100%;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--main-color-green);
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 15px;
    font-weight: 600;
    transition: transform 0.15s ease-out;
}

.social-icons:hover {
    opacity: 0.6;
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 26px;
}

header {
    background: url(./img/bl2f/mid-term.webp) center/cover;
    height: 85vh;
    min-height: 500px;
    padding: 50px 100px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
}

.header-left {
    min-height: 60%;
    max-width: 950px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #31ac6880;
    padding: 50px;
    border-radius: 15px;
}

.header-left p {
    text-align: center;
    font-size: clamp(18px, 3vw, 28px);
    color: white;
    font-weight: 600;
}

.header-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right img {
    width: 90%;
}

@media screen and (max-width: 750px) {
    header {
        /* grid-template-rows: 50% 50%; */
        grid-template-columns: 1fr;
        padding: 50px 0;
    }

    h1 {
        text-align: center;
    }

    .header-left p {
        margin: 0 auto;
    }

    .header-right {
        height: 100%;
    }
    .header-right img {
        max-height: 100%;
    }
}

/* -------------------------- */
/* Aside */
/* -------------------------- */

aside {
    opacity: 0;
    z-index: 100;
    min-height: 200px;
    background: linear-gradient(
        131deg,
        rgb(244 245 246 / 65%) 3.89%,
        rgba(244, 245, 246, 0.8) 31.11%,
        rgba(244, 245, 246, 0.8) 58.31%,
        rgb(244 245 246 / 30%) 118.34%
    );
    border-radius: 8px;
    position: fixed;
    top: 20%;
    right: 6vw;
    display: grid;
    justify-items: center;
    align-items: center;
    padding: 0.6rem 1rem;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    transform: translateX(200px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

aside.active {
    opacity: 1;
    transform: translateX(0px);
}

aside img {
    width: 40px;
    user-select: none;
}

aside a {
    transition: opacity 0.15s ease-out, scale 0.15s ease-out;
}

aside a:hover {
    opacity: 0.5;
    scale: 0.95;
}

/* *------------Partners -------------------------------------------------- */

/* -------------------------- */
/* scroller div */
/* -------------------------- */

.scroller {
    width: 95%;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    height: 120px;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
    mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s)
        var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 80s;
}

.scroller img {
    height: 100%;
    width: 100%;
    max-height: 120px;
    max-width: 340px;
}

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

@media screen and (max-width: 750px) {
    .scroller__inner {
        gap: 2rem;
        height: 110px;
    }

    .scroller[data-speed="slow"] {
        --_animation-duration: 60s;
    }
}

/* *--------------------STEP ------------------------------------- */

.pillars-container {
    margin-top: 80px;
}

.pillars-container .is-8 {
    width: 100%;
}

.pillars-container .is-4 {
    padding: 0;
}

.pillars-container .columns {
    flex-direction: column;
}

.pillars-container .content {
    margin: 0;
}

.pillars {
    display: flex;
    justify-content: center;
    align-items: center;
    /* transform: translateX(20%); */
}

.pillars li {
    border: 1px solid #8e8e8e75;
    font-family: "inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
    margin-left: -34px;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: white;
    padding: 10px 50px;
    cursor: pointer;
    background-color: var(--main-color-green);
    border-radius: 25px;
    user-select: none;
    list-style: none;
}

.pillars li.is-active {
    background-color: var(--main-color-green-dark);
    color: white;
    user-select: none;
    z-index: 10;
    transform: scale(1.05);
}

.tab-content {
    display: none;
    margin-top: 40px;

    flex-direction: column;
    background-color: var(--main-color-green);
    border: 2px solid var(--main-color-green-dark);
    padding: 2rem 7rem;

    color: #666666;
    border-radius: 20px;
}
.tab-content.is-active {
    display: flex;
    flex-direction: column;
    background-color: var(--main-color-green);
    border: 2px solid var(--main-color-green-dark);
    padding: 2rem 7rem;
    color: #666666;
    border-radius: 20px;
}
.tab-content img {
    margin: 0 40px 40px 40px;
}

.tab-content span {
    text-align: justify;
    margin-right: 30px;
    font-weight: 700;
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 1.5rem;
    color: white;
}

.tab-content li::marker {
    color: white;
}

.tab-content li a:hover {
    text-decoration: none;
}

.tab-content li a {
    font-size: 1rem;
    text-decoration: underline;
    transition: 0.1s;
    color: white;
}

@media screen and (max-width: 750px) {
    .tab-content.is-active,
    .tab-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 2rem;
    }
    .pillars {
        flex-wrap: wrap;
        justify-content: center;
        transform: translateX(0);
    }
    .pillars li {
        font-size: clamp(14px, 2vw, 16px);
        line-height: 25px;
        padding: 15px;
        margin: 10px;
    }
}

/* *-------------- ABOUT US --------------------------------------- */

.about-us {
    max-width: 1250px;
    margin: auto;
    padding-inline: 4rem;
}

.process {
    margin: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    color: var(--main-color-green-dark);
}

.process h3 {
    margin-bottom: 30px;
}

.process img {
    width: 100%;
}

.about-us-section {
    margin: 0 auto;
    width: 80%;
    /* background: url(./img/clearing_house/body-bg.png) top/55%;
    background-repeat: no-repeat; */
}

span.info {
    font-size: 12px;
    color: #011627ab;
}

.about-us-container {
    display: grid;
    /* grid-template-columns: 45% 55%; */
    gap: 60px;
}

.about-us-container-left {
    min-height: 700px;
    padding-top: 80px;
    display: grid;
    align-items: center;
    grid-template-rows: 20% 20% 25% 1fr;
}

.about-us-container-right {
    min-height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.card-about-us:nth-child(even) {
    transform: translateY(20%);
}

.card-about-us:nth-child(2),
.card-about-us:nth-child(4) {
    background-color: #c9e2654a;
}

.card-about-us:nth-child(4) {
    gap: 5px;
    justify-content: space-around;
}
.card-about-us:nth-child(4) img {
    border-radius: 5px;
}
.card-about-us:nth-child(4) span.info {
    font-size: 10px;
}

.card-about-us {
    padding: 15px;
    width: 80%;
    min-width: 220px;
    /* min-height: 20vh;
    height: 40vh; */
    border: 1px solid rgb(182, 182, 182);
    border-radius: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    margin-inline: auto;
    margin-top: 4rem;
}

.card-about-us img {
    width: 50%;
    max-width: 120px;
    border-radius: 5px;
}

.card-about-us h3 {
    font-size: 20px;
}
.card-about-us p {
    font-size: 16px;
}

@media screen and (max-width: 1190px) {
    .about-us-container {
        display: flex;
        flex-direction: column;
    }

    .about-us-container-left {
        padding-top: 0px;
        min-height: 400px;
        grid-template-rows: 15% 25% 40% 20%;
        justify-items: center;
    }

    .card-about-us:nth-child(even) {
        transform: translateY(0%);
    }
}
@media screen and (max-width: 750px) {
    .about-us {
        padding-inline: 2rem;
    }
    .process {
        flex-direction: column;
    }
    .about-us-container {
        align-items: center;
    }
    .card-about-us {
        flex-direction: column;
        width: 100%;
    }
}

/* *----------------- VIDEO ------------------------------------------ */

.card-video {
    min-height: 180px;
}

.video-container {
    display: flex;
    justify-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1250px;
    margin: auto;
    margin-top: 100px;
    padding: 0px 40px;
}

.card-video {
    width: 30%;
    min-width: 250px;
}

.card-video img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    margin-bottom: 30px;
    border-radius: 4px 4px 0 0;
}

.card-video p {
    text-align: justify;
    font-size: 16px;
}

@media screen and (max-width: 550px) {
    .video-container {
        grid-template-columns: 1fr;
        grid-template-rows: 45% 45%;
    }
}

/* *-----------------RESOURCES --------------------------------------- */

.resources {
    min-height: 400px;
    padding: 0px 7%;
}

.resources h2 {
    text-align: center;
    padding-bottom: 30px;
}

.resources h3 {
    font-size: clamp(20px, 3vw, 45px);
    padding-bottom: 30px;
}

.resources p {
    letter-spacing: 1px;
    width: 80%;
}

.resources-card-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    justify-items: center;
    margin-left: -100px;
}

.resources button:has(svg) {
    background-color: #1d3c83;
    border-radius: 50px;
}

@media screen and (max-width: 1100px) {
    .resources-card-container {
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin-left: 0px;
    }

    .resources h2,
    .resources h3,
    .resources p {
        text-align: center;
        margin: 0 auto;
    }
}

@media screen and (max-width: 750px) {
    .resources {
        padding: 0px;
        margin-top: 100px;
    }
}

/* *-------------------CARD SLIDER--------------------------------- */

.resources-card-container-left {
    margin-bottom: 40px;
    padding: 20px 40px;
}

.slider-scroll {
    height: 300px;
    width: 800px;
    position: relative;
}

.slider-nav-button {
    background: transparent;
    border: none;
    position: absolute;
    top: -25%;
    cursor: pointer;
    transition: 0.2s ease-out;
}

.slider-nav-button:hover {
    opacity: 0.7;
}

.slider-nav-button svg {
    width: 44px;
    height: 40px;
    background-color: var(--main-color-green-dark);
    color: white;
    padding: 6px;
    border-radius: 50px;
}

.slider-nav-button-previous {
    left: 30%;
}

.slider-nav-button-next {
    right: calc(35%);
}

.slider-content {
    height: 100%;
    width: 100%;
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.slider-content-item {
    height: 100%;
    min-width: 25%;
}

.card-scroll {
    height: 100%;
    width: 90%;
    border: 2px solid #1d3c83;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    transition: opacity 0.2s ease;
}

.card-scroll div:has(img) {
    height: 50%;
    overflow: hidden;
}
.card-scroll div:has(img) img {
    object-fit: contain;
    height: 100%;
}

.card-scroll span {
    padding: 20px;
}

.card-scroll .format {
    position: absolute;
    top: 7px;
    right: 10px;
    background-color: var(--main-color-red);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 15px;
}

.card-scroll:hover {
    opacity: 0.8;
}

@media screen and (max-width: 900px) {
    .slider-scroll {
        width: 100%;
    }
}
@media screen and (max-width: 650px) {
    .slider-content-item {
        min-width: 50%;
    }
}

/* *-------------STATS --------------------------------------------------- */

.stats {
    min-height: 220px;
}

.stats h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 10px;
    margin-top: 0px;
    padding: 0;
    color: white;
}

.stats-figure span:nth-child(2) {
    text-align: center;
    font-size: 18px;
}

.stats-container {
    min-height: 200px;
    background: rgb(26, 60, 138);
    background: linear-gradient(180deg, #134c24 0%, #31ac68 100%);
    border-radius: 15px;
    padding: 2vw;
    margin: 0 auto;
    color: white;
}

.stats-figures-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    width: 70%;
    margin: 0 auto;
}

.stats-figures-container span {
    font-size: clamp(40px, 5vw, 50px);
}

.stats-figure {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 750px) {
    .stats-figures-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

/* *-----------HOUSE FINDINGS---------------------------------- */

.impact .card-video a {
    font-weight: 700;
    text-decoration: underline;
}

.house-findings-container {
    display: grid;
    grid-template-columns: 56% 40%;
    gap: 4%;
}
.house-findings-container p {
    text-align: justify;
}
.house-findings-container .house-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.house-findings-container .house-img img {
    width: 100%;
}
.house-findings-container .house-img #btn1 {
    padding: 10px 18px;
    margin-top: 20px;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .house-findings-container {
        grid-template-columns: 1fr;
    }
}

/* *----------ZENZOO --------------------------------------- */

.zenzoo {
    flex-wrap: wrap;
    margin-block: 120px 20px;
    display: flex;
    gap: 100px;
    padding-block: 80px;
}

.zenzoo h3 {
    color: white;
    text-align: center;
    flex: 3;
}

.zenzoo button {
    border: 3px solid white !important;
}
.zenzoo a {
    flex: 1;
}

@media screen and (max-width: 750px) {
    .zenzoo a {
        text-align: center;
    }
}

/* *-----Blog container -------------------------------- */

.blog-container {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 250px);
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    border: 1px solid black;
    border-radius: 20px;
    padding-bottom: 20px;
    height: 300px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.blog-card h3,
.blog-card p {
    padding: 0px 30px;
}

.blog-card h3 {
    font-size: 24px;
}

.blog-card img {
    border-radius: 20px 20px 0px 0px;
    width: 100%;
}

/* *----------COntact Us card --------------------------------------- */

.contact-us {
    min-height: 70vh;
}

.contact-container {
    background-color: rgb(255, 235, 188);
    border-radius: 20px;
    height: 340px;
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    overflow: hidden;
}

.contact-container-left {
    /* background-color: lightblue; */
    position: relative;
    width: 50%;
    height: 100%;
    display: grid;
    grid-template-rows: 20% 10% 1fr;
    justify-content: center;
    align-items: center;
}

.contact-container-left img {
    position: absolute;
    top: 55%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 15vw;
}

.contact-container-right {
    /* background-color: lightsalmon; */
    height: 100%;
    width: 50%;
}

.contact-container-right form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: auto;
    max-width: 600px;
    height: 100%;
}

.contact-container-right-submit {
    display: flex;
    width: 70%;
    gap: 5%;
}

input {
    width: 70%;
    border: none;
    border-radius: 8px;
    height: 50px;
    padding-left: 10px;
    font-size: 14px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    padding-left: 10px;
    font-size: 14px;
    height: 50px;
}

input[type="submit"] {
    height: 50px;
    width: 70%;
}

@media screen and (max-width: 1000px) {
    .contact-container {
        flex-direction: column;
        min-height: 400px;
    }

    .contact-container-left {
        width: 100%;
        height: 50%;
        grid-template-rows: 30% 20% 1fr;
        justify-items: center;
    }

    .contact-container-left img {
        display: none;
    }

    .contact-container-right {
        width: 100%;
        height: 50%;
    }

    .contact-container-right form {
        align-items: center;
        width: 100%;
        margin: 0 auto;
        gap: 0;
        padding-bottom: 30px;
    }
}

/* *---------FOOTER ----------------------------------------------------- */

footer {
    min-height: 50px;
    background: rgb(26, 60, 138);
    background: linear-gradient(180deg, #1d7136 0%, #31ac68 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 4rem;
    color: white;
    padding-block: 1rem;
}

footer p {
    font-size: clamp(12px, 2vw, 15px);
    color: white;
}

@media screen and (max-width: 750px) {
    footer {
        flex-direction: column;
        gap: 10px;
    }
    footer p {
        text-align: center;
    }
}

/* *-------------INTERSECTION OBSEVER------------------------------ */

/* Selecteur sur les atttribut */
[class*="reveal-"] {
    opacity: 0;
    transform: translateY(-30px);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0px);
    transition: 1s cubic-bezier(0.5, 0, 0, 1);
}

/* Les elements 2 et plus seront révélé avec un délai, ce qui n'est pas le cas de reveal-1 */
.reveal-2 {
    transition-delay: 0.1s;
}
.reveal-3 {
    transition-delay: 0.2s;
}
.reveal-4 {
    transition-delay: 0.3s;
}
.reveal-5 {
    transition-delay: 0.4s;
}
.reveal-6 {
    transition-delay: 0.5s;
}
.reveal-7 {
    transition-delay: 0.6s;
}

/* --------------------------- */
/* ---------GET IN TOUCH-------------- */
/* --------------------------- */

.get-in-touch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-block: 100px;
}
.get-in-touch img {
    object-fit: contain;
}

.get-in-touch h3 {
    color: var(--main-color-green-dark);
    font-size: clamp(28px, 4vw, 48px);
}

.git-btn {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.btn1 {
    width: 100%;
    text-align: center;
    background-color: var(--main-color-green);
    color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 12px 0px rgba(73, 73, 73, 0.48);
    cursor: pointer;
    transition: 0.15s ease-out;
    padding: 12px 24px;
    font-size: 1.2rem;
}

@media screen and (max-width: 750px) {
    .get-in-touch {
        flex-direction: column;
    }
}

/* *------------STAKEHOLDERS SECTION----------------------------- */

.stakeholders-section {
    display: flex;
    justify-content: space-between;
    padding: 40px 5%;
    gap: 20px;
    background-color: #1a1a1a;
}

.stakeholder-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.stakeholder-group h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #333;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 2rem;
    width: fit-content;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.11);
    flex-direction: column;
}

.card-container img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.communication-resources {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}
.resource-card {
    flex: 1 1 300px;
    max-width: 400px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.resource-card h3 {
    font-weight: 500;
}
.resource-card img {
    max-width: 100%;
    margin-bottom: 15px;
    height: 250px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .resource-card {
        flex: 1 1 100%;
    }
}
