/******** GLOBAL STYLES ********/
html {
    font-size: 16px;
}

body {
   font-family: 'Montserrat', Helvetica, Arial, sans-serif;
   font-size: 0.9em;
   color: #000000;
}

.content-wrapper {
    max-width: 1200px;
    width: 90%;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}

h1,
h2,
h3,
h4 {
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-size: 1.875em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.25em;
}

h4 {
    font-size: 0.75em;
}

p {
    font-size: 1rem;
    line-height: 36px;
}


/******** HEADER STYLES ********/
header {
    display: flex;
    justify-content: center;
    text-align: center;
}

header h1 {
    /* outline: 3px dotted red; */
    /* width: 300px; */
    width: 100%;
    margin: 0;
    padding: 38px 0 20px 0;
    border-bottom: 3px solid #77A466;
}

header h1 span {
    color: #45610E;
}

header nav {
    /* outline: 3px dotted red; */
    /* width: 300px; */
    padding: 20px 0;
    
}

header nav ul {
    padding: 0;
    margin: 0;
    /* text-align: right; */
    list-style: none;
}

header nav ul li {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    padding: 10px 0;
}

header nav ul li a {
    text-decoration: none;
    color: #45610E;
}

/********  MAIN STYLES ********/

.main-image img {
    border-top: 3px solid #77A466;
    border-bottom: 3px solid #77A466;
    width: 100%;
    /* height: auto; */
}



.main-title h2 {
    color: #45610E;
    /* margin: 20px 0; */
    padding: 5px 0;
}

/******** TOP SECTION ********/
.top-section, .bottom-section {
    display: flex;
    justify-content: center;
}



/******** BOTTOM SECTION ********/

.top-section,
.bottom-section {
    display: flex;
    justify-content: center;
}

.bottom-section .content-wrapper {
   border-top: 5px solid #eee;
   border-bottom: 5px solid #eee;
}

.section-one,
.section-two,
.section-three {
    /* outline: 3px dotted red; */
    box-sizing: border-box;
}

.section-one {
    /* width: 350px; */
    width: 100%;
    
    
}

.section-two {
    /* width: 500px; */
    width: 100%;
    /* border-right: 5px solid #eee;
    border-left: 5px solid #eee; */
    border-top: 5px solid #eee;
   border-bottom: 5px solid #eee;
    
}

.section-three {
    /* width: 350px; */
    width: 100%;
}

.bottom-section h3 {
    margin: 30px 0;
}

.menu-list {
    padding-left: 0;
    list-style: none;

}

.menu-list li {
    color: #45610E;
    line-height: 36px;
    text-transform: capitalize;
    font-size: 1rem;
}

/******** FOOTER STYLES ********/
footer {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

footer span {
    font-size: 0.875rem;
    font-family: 'Galada', cursive;
    color: #45610E;
    text-transform: lowercase;
}

/* Media Query Tablet Styles */
@media all and (min-width: 768px) {
    .bottom-section .content-wrapper {
        display: flex;
        justify-content: space-evenly;
     }

     .section-one {
        width: 26%;
    }
    
    .section-two {
        width: 40%;
        border-right: 5px solid #eee;
        border-left: 5px solid #eee;
        padding: 0 30px;
        border-top: 0;
        border-bottom: 0;
    }
    
    .section-three {
        width: 26%;
    }
}

/* Media Query Desktop Styles */
@media all and (min-width: 1200px) {
    body {
        font-size: 1em;
    }
    
    header .content-wrapper {
        justify-content: space-between;
        align-items: flex-end;
        padding: 10px;
    }

    header h1 {
        width: 30%;
        border-bottom: 0;
        text-align: left;
        align-items: center;
    }

    header nav {
        width: 21%;
    }

    header nav ul {
        display: flex;
        justify-content: space-between;
    }

}