        /* developer styles go here */
:root {
    --dark-green: #252d2b;
    --muted-green: #629045;
    --vibrant-green: #165022;
    --off-white: #e4e5e5;
    --bright-orange: #da6a00;
    --muted-grey: #7e8482;
}


@font-face {
    font-family: 'tofinobold_personal';
    src: url('fonts/tofino-boldpersonal-webfont.woff2') format('woff2'),
         url('fonts/tofino-boldpersonal-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'tofinomedium_personal';
    src: url('fonts/tofino-mediumpersonal-webfont.woff2') format('woff2'),
         url('fonts/tofino-mediumpersonal-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: 'Merriweather Sans', sans-serif; 
}

ul,
ol{
  list-style: none;
  padding: 0;
}

svg {
    width: 2rem;
    stroke: var(--off-white);
}

header {
    background-color: var(--dark-green);
}

header .flex-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: var(--off-white);
    height: 70px;
}

ul.menu a{
    text-decoration: none;
    color: var(--off-white);
}

h1 {
    font-family: 'tofinomedium_personal';
    font-size: 24px;
    margin-left: 0.5rem;
}

h2 {
    font-family: 'tofinobold_personal';
    font-size: 5.2rem;
    line-height: 1;
    position: relative;
    margin-bottom: 5.5rem;
    margin-top: 3rem;
}

.submenu > li {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.inner-container {
    width: 90%;
    margin: 0 auto;
}

.offset {
    position: absolute;
    left: 40px;
    top: 80px;
    color: var(--muted-green);
}

section:nth-of-type(2) .offset {
    color: var(--off-white);
}

nav {
    position: absolute;
    background-color: var(--dark-green);
    top: 48px;
    left: 0;
    width: 100vw;
    text-align: right;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
    z-index: 1;
}

h1>a {
    text-decoration: none;
    color: var(--off-white);
}

a {
    transition: all 0.15s ease;
}

.link-btn{
    text-decoration: none;
    color: white;
    background-color: var(--dark-green);
    border-radius: 2rem;
    display: block;
    width: 70%;
    padding: 0.5rem 0;
    text-align: center;
    margin: 3rem 0 3.8rem 0;
    transition: all 0.2s ease;
}

.staggered {
    position: relative;
    padding-top: 7.4rem;
    margin-bottom: 9.3125rem;
}

.staggered picture:first-of-type{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.staggered picture {
    width: 75%;
    height: auto;
}

ul.menu {
    margin: 2rem 1rem 2rem 0;
    font-size: 1.125rem;
}

.submenu {
    margin: 1rem 0;
}

button {
    border: none;
    background-color: transparent;
}

.show-nav {
    max-height: 552px;
}

section:nth-of-type(2) {
    background-color: var(--muted-grey);
}

section:nth-of-type(2) img {
    margin-bottom: 1rem;
    width: 100%;
}

section {
    padding-top: 1rem;
}

section:nth-of-type(2) h2 {
    margin-bottom: 8rem;
    color: var(--vibrant-green);
}

.right-align {
    display: flex;
    justify-content: flex-end;
}

.styled-heading{
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.styled-heading svg { 
    position: absolute;
    left: -23px;
    top: -30px;
    z-index: 1;
    width: 3.5rem;
    fill: var(--bright-orange);
    stroke: transparent;
}

.styled-heading h2 {
    margin-bottom: 2.5rem;
}

section:nth-of-type(3) h2 {
    font-size: 4.5rem;
    margin-top: 5rem;
}

article img {
    padding: 1rem 1rem 4rem 1rem;
    background-color: var(--dark-green);
}

h3 {
    font-family: 'tofinomedium_personal';
    font-size: 43px;
    line-height: 1.3;
    color: var(--muted-green);
    width: 90%;
    position: relative;
    top: -55px;
    left: 0.8rem;
    margin-bottom: -55px;
}

article p,
article a{
    width: 90%;
    margin: 0 auto;
}

article a {
    color: var(--dark-green);
    display: block;
    margin: 1rem auto 3rem auto;
    font-size: 1.2rem;
}

article img {
    width: 100%;
}


section:last-of-type {
    background-color: var(--dark-green);
    color: var(--off-white);
    padding-bottom: 2.5rem;
}

section:last-of-type span {
    color: var(--muted-green);
}

section:last-of-type h2 {
    text-align: right;
    margin-bottom: 2rem;
}

section:last-of-type .link-btn {
    background-color: var(--muted-green);
}

section:last-of-type img {
    width: 100%;
}

footer{
    background-color: var(--dark-green);
    margin-top: 6rem;
    padding: 2rem 0;
}

.footer-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2%;
    line-height: 2;
}

footer a {
    text-decoration: none;
    color: var(--off-white);
}

.social-nav {
    display: flex;
    gap: 5%;
}

.social-nav svg {
    stroke: transparent;
    fill: var(--off-white);
    width: 2rem;
}

.social-nav svg:hover {
    fill: var(--muted-green);
}

ul.menu svg {
    display: none;
}

header a:hover,
li:hover > a{
    color: var(--muted-green);
}

.link-btn:hover,
.right-align>.link-btn:hover {
    background-color: var(--bright-orange);
    
}

button:hover > svg {
    stroke: var(--bright-orange);
}


@media screen and (min-width:800px) {

    .inner-container{
        width: 95%;
    }

    .flex-container {
        display: flex;
    }

    .text-content{
        width: 35%;
    }
    .staggered {
        width: 60%;
        margin-top: 10.5rem;
        margin-left: auto;
    }

    .staggered picture{
        width: 65%;
        height: auto;
    }

    .staggered picture:first-of-type {
        top: -35px;
    }

    section:nth-of-type(2) {
        height: 592px;
    }

    
    section:nth-of-type(2) .inner-container{
        position: relative;
        justify-content: flex-end;
    }

    section:nth-of-type(2) .right-column {
        width: 37%;
        margin-right: 5%;
    }
    
    section:nth-of-type(2) img{
        position: absolute;
        width: 420px;
        left: 0;
        top: -30px;
        z-index: 1;
    }

    section:nth-of-type(3) h2 {
        text-align: center;
    }

    section:nth-of-type(3) .flex-container{
        flex-wrap: wrap;
        gap: 2%;
    }

    article {
        width: 49%;
    }


    section:last-of-type {
        width: 75%;
        position: relative;
    }

    section:last-of-type h2 {
        font-size: 4.5rem;
    }

    section:last-of-type .inner-container {
        width: 65%;
        margin: 0 auto 0 2rem;
    }

    section:last-of-type img {
        position: absolute;
        top: 240px;
        right: -180px;
        width: 300px;
        height: auto;
    }

    section:last-of-type .link-btn {
        width: 50%;
    }
    
    .social-nav {
        margin: 0;
    }
}

@media screen and (min-width: 1300px) {

    ul.menu svg {
        display: inline-block;
        position: relative;
        top: 15%;
    }

    .inner-container {
        width: 1300px;
    }

    header button {
        display: none;
    }

    header {
        height: unset;
    }

    header .flex-container {
        align-items: center;
        justify-content: space-between;
        height: unset;
    }

    h1 {
        font-size: 2rem;
    }

    nav {
        max-height: fit-content;
        text-align: center;
        position: static;
        overflow: visible;
        margin-right: 1.4rem;
        width: 60%;
    }
    
    ul.menu {
        display: flex;
        white-space: nowrap;
        font-size: 1.5rem;
        justify-content: space-between;
    }
    
    ul.menu>li {
        position: relative;
    }

    header ul.submenu {
        position: absolute;
        background-color: var(--dark-green);
        border-radius: 5px;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
        width: 140%;
        left: -20%;
    }

    ul.submenu a {
        font-size: 1.125rem;
    }

    ul.submenu>li:last-of-type{
        margin-bottom: 1rem;
    }

    ul.menu li:hover > ul.submenu {
        visibility: visible;
        opacity: 1;
    }

    ul.menu li:focus-within > ul,
    ul.menu li > ul:focus {
       visibility: visible;
       opacity: 1;
    }

    .staggered {
        margin-top: 5rem;
        width: 50%;
        padding-top: 15rem;
    }

    .staggered picture {
        width: 480px;
    }

    section:last-of-type{
        background-color:transparent;
        width: 100%;
    }

    section:last-of-type .inner-container{
        width: 1300px;
        margin: 0 auto;
    }
    
    section:last-of-type .staggered-box {
        width: 75%;
        background-color: var(--dark-green);
        padding: 3rem 10rem 3rem 10rem;
        position: relative;
    }

    section:last-of-type img {
        width: 400px;
        right: -300px;
        top: 200px;
    }

    .staggered-box h2 {
        font-size: 300px;
    }

    .staggered-box .green-img{
        width: 600px;
        height: auto;
    }

    .text-content {
        padding-top: 3rem;
        width: 28%;
        margin-left: 10%;
    }

    section h2 {
        font-size: 7.5rem;
    }

    .offset {
        font-size: 5.5rem;
        top: 120px;
        left: 110px;
    }

    section:nth-of-type(2) .right-column {
        margin-right: 12%;
    }

    section:nth-of-type(2) img {
        width: 40%;
        top: -110px;
    }
 
    section:nth-of-type(2) a {
        width: 50%;
    }
    
    article{
        width: 23.5%;
    }

    header, footer, section{
        width: 100%;
    }

    section:nth-of-type(3) h2 {
        font-size: 125px;
        margin-top: 160px;
    }

    .styled-heading svg {
        margin-left: 3px;
    }
}