@font-face {
    font-family: "styled-font";
    src: url(/static/fonts/belinda_w00_regular_Regular.ttf) format("truetype");
}

:root {
    --accent-color: #f89320;
    --styling-color: #13248a;
    --background-color: #ffffff;
    --dark-gray: #2F2E2E;
    --foreground-color: #D9D3BF;
    --dark-backgruond: #312610;

}


.grid-sec {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
}

/* Add vertical borders between left and right */
.grid-sec:nth-child(odd) {
  border-right: 1px solid #004d26;
}

/* Add horizontal borders between rows */
.grid-sec:nth-child(-n+4) {
  border-bottom: 1px solid #004d26;
}

.grid-section img {
    width: clamp(2rem, 10vw, 4rem);
    padding-bottom: 2rem;
}


.hero {
    width: 100%;
    height:80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    background-image: url(/static/images/our_goals_hero_img.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.card {
    width: 60%;
    flex-direction: column;
    color: var(--styling-color);
    padding: 1rem;
    margin: -5rem auto 1rem auto;

}

@media (max-width: 60em) {
    .our-story{
        width: 90%;
    }

    .grid-section p {
    width: 100%;
    font-size: var(--fs-400);

    }

    .card {
    width: 90%;

}
}
   


.card h1 {
    margin: 0.5rem 0;
}

.body {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: var(--styling-color);
    background-color: var(--background-color);
    width: 100%;
}

.our-story {
    width: 60%;
    margin: 0 auto;
}

.our-story p {
    padding: 1rem 0;
    font-weight: bold;
}


