/* ---------------------------------------------------------------------- */
/*  Generic –> Box Sizing
/* ---------------------------------------------------------------------- */

*, *:before, *:after {box-sizing: border-box;}


:root {
    --spacer: 36px;
    --spacer-2x: 60px;


    --base-font-size: 21px; 
    --medium-font-size: 32px;
    --big-font-size: 46px;
}

@media all and (max-width: 768px) {
    :root {
        --spacer: 10px;
        --spacer-2x: 20px;
    
    
        --base-font-size: 16px; 
        --medium-font-size: 18px;
        --big-font-size: 30px;
    }
}

/* ---------------------------------------------------------------------- */
/*  Generic –> Shared
/* ---------------------------------------------------------------------- */

html, body {
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-style: normal;
    
    font-size: var(--base-font-size);
     color: #FFF; 
     line-height: 1.4; 
     background-color: #34461C;
}

img.logo {
    width: 170px;
}


body {margin:0;}

h1 {
    margin: 0;  
    font-size: var(--big-font-size); 
    font-weight: 300; 
    line-height: 1.2; 
}

h2 {
    margin: 0;  
    font-size: var(--medium-font-size); 
    font-weight: 500; 
    line-height: 1.2; 
}

a {
    color: #fff;
    text-decoration: underline;
}
section {
    padding: var(--spacer-2x);
}

header {
    position: absolute;
    padding: var(--spacer-2x);
    z-index: 99;
}

section.banner {
    padding: 0;
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0;
}

section.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


section.banner .overlay {
    padding: var(--spacer-2x);
    position: absolute;
    display: flex;
    justify-content: center; 
    /* align-items: center;  */
    width: 100%; height: 100vh; 
    flex-flow: column;
}

section.banner .overlay h1 {
    max-width: 80%;
}

section.content .text {
    max-width: 80%;
}

section .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacer-2x);
}
ol li {
    padding: 4px 0;
    max-width: 50vw;
}

.light-green {
    background-color: #8F8F37;
}

.full-img img {
    width: 100vw;
    height: 40vh;
    object-fit: cover;
}

@media all and (max-width: 768px) {

    img.logo {
        width: 150px;
    }
    section.banner .overlay h1 {
        max-width: unset;
        font-weight: 300;
    }

    section.content .text {
        max-width: unset;
    }

    ol li {
        max-width: unset;
    }
    section .grid {
        grid-template-columns: 1fr;
    }


    

}