@charset "UTF-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*PAGE CSS BEGINS HERE*/

:root {
    --dkGreen: #213029;
	--ltGreen: #7DA076;
}

html, body {
    font-family: "Montserrat", sans-serif;
    height: 100%;
    color: #3b3d3d;
    background-color: #fff;
    box-sizing: border-box;
}
body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--dkGreen);
}

p {
    line-height: 24px;
}

h2 {
    color: var(--ltGreen);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

ul {

}

ul li {
    line-height: 30px;
}

strong {
    font-weight: 700;
}

header {
    background-color: var(--dkGreen);
    padding: 10px 20px;
    height: 100px;
    display: flex;
}

header img {
}

nav {
	visibility: hidden;
}

main {
    flex: 1 0 auto;
    width: 100%;
    text-align: center;
    align-items: center;
}

.topBanner {
    background-color: var(--ltGreen);
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0px;
    
}

.topBanner p {
    width: 90%;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .9vw;

}

.comingSoon {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    height: auto;
    margin: 60px auto;
}

.comingSoon img {
    width: 100%;
    height: auto;
}

.services {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.services ul {
    width: 60%;
    margin: auto;
    text-align: left;
}

.services li {
    margin-bottom: 10px;
}

.statement {
    width: 80%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
}

.contactContainer {
    width: 90%;
    margin: 80px auto;
}

.contactContainer h2 {
    /*background-color: var(--dkGreen);*/
    padding: 10px;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}

.contact .col1 {
    width: 48%;
    min-width: 400px;
}

.contact .col1 iframe {
    width: 90%;
    max-width: 500px;
    height: 400px;
    margin-top: 20px;
}

.contact .col2 {
    width: 48%;
    min-width:  400px;
}

footer {
    background-color: var(--dkGreen);
    width: 100%;
    height: 140px;
    flex-shrink: 0;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}

.footerLeft {
    width: 50%;
    height: 100%;
    position: relative;
}

.footerLeft img {
    width: 100px;
    height: auto;
    position: absolute;
    bottom: 7px;
    left: 40px;
}

.footerRight {
    width: 50%;
    height: 100%;
    color: var(--ltGreen);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end
}

.footerRight a {
    color: var(--ltGreen);
}

/* MOBILE CSS BEGINS HERE */

@media all and (max-width: 660px) {
    .contactContainer .col1 {
        margin-bottom: 30px;
    }

    .services ul {
        width: 90%;
    }
}
