/*** BASE STYLES***/
html {
    font-size: 16px;
    width: 100%;
}


body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 1200px;
/** margin: auto; **/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

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

h1 {
    font-size: 1.875em;
}

h2 {
    font-size: 1.125em;
}

h3 {
    font-size: 0.75em;
}

p {
	font-size: 1em;
	line-height: 1.3125em;
    padding: 0 30px;
}


/*** HEADER ***/

header {
/** height: 110px; **/
    width: 100%;
    border-bottom: 3px solid #77a466;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header h1 {
/** float: left; **/
    margin: 0;
    padding: 38px 0;
    border-bottom: 3px solid #77a466;
}

header h1 span{
    color: #77a466;
}

header nav {
/** float: right; **/
    padding: 46px 0;

}

header nav ul {
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: flex;
    line-height: 3em;
    font-weight: 700;
    font-size: 0.875em;
    text-transform: uppercase;
    padding: 0 10px;
}

header nav ul li a {
    text-decoration: none;
    color: #77a466;
}


/*** TOP & BOTTOM SECTIONS ***/

.top-section,
.bottom-section {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}


.main-image {
/** float: left; **/
    height: auto;
}

.main-image img {
    border-bottom: 3px solid #77a466;
    width: 100%;
}

.main-title {
/** float: left; **/
    height: auto;
}

.main-title h2 {
    color:#77a466;
    text-align: left;
    padding: 5px 0;
}

.main-title p {
    font-size: 1em;
    line-height: 25px;
    padding: 0;
    text-align: left;

}

.section-one,
.section-two,
.section-three {
/** float: left; **/
    width: 100%;
    height: auto;
    border-top: 1px solid #dedbdc; 
}

.section-one h3 {
    padding: 10px 20px;
}

/**
.section-two {
    border-left: 1px solid #dedbdc;
    border-right:  1px solid #dedbdc;
}
**/

.section-two h3,
.section-three h3 {
    padding: 10px 30px;
}

.menu {
    list-style: none;
    padding: 0 20px;
}

.menu li {
    color: #77a466;
    padding: 10px 0;
}

.reviews {
    color: #000000;
    font-size: 1em;
    line-height: 21px;
}

/*** FOOTER ****/

.address {
    font-size: 1em;
    line-height: 24px;
}


footer {
/** height: 50px; **/
    width: 100%;
    border-top: 3px solid #dedbdc;
    margin: auto;
    clear: both;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer span {
    font-family: 'Galada', cursive;
    font-size: 1em;
    color: #77a466;
    text-transform: lowercase;
    
}


/*---------- TABLET ----------*/

@media all and (min-width: 768px) {
    .main-title {
        border-bottom: 1px solid #dedbdc;
    }

    
    .section-two {
        border-left: 1px solid #dedbdc;
        border-right:  1px solid #dedbdc;
    }    

    .section-one,
    .section-two,
    .section-three {
        flex-basis: 30%;
        border-top: none;
    }

    .top-section,
    .bottom-section {
        justify-content: space-between;
        flex-flow: row wrap;
        align-items: flex-start;
    }

}
  
  

  @media all and (min-width: 1200px) {
    header {
        flex-direction: row;
        justify-content: space-between;
    }

    header h1 {
        float: left;
        margin: 0;
        padding: 2.25em 0;
        border-bottom: none;
    }
    
    header nav {
        float: right;
        padding: 2.875em 0;
    }

    header nav ul li {
        text-transform: uppercase;
        display: inline-block;
        font-weight: 700;
        font-size: 14px;
        padding: 0 10px;
        line-height: 0;
    }

  }
  