/* COLORS USED
Light Green - #5CFF54;
Dark Green - #00610B;
Black - #333333;
White - #ffffff;
*/

/* #######################################
######## GENERAL STYLES
########################################*/
body{
    background: url('../images/Background.png') repeat;
}
.shadow-0 {
    border: 1px solid #eee;
}
.shadow-1 {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.shadow-2 {
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
}
.shadow-3 {
    box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
}
.shadow-4 {
    box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21), 0 16px 28px 0 rgba(0, 0, 0, 0.22);
}
.shadow-5 {
    box-shadow: 0 40px 77px 0 rgba(0, 0, 0, 0.22), 0 27px 24px 0 rgba(0, 0, 0, 0.2);
}
a{
	color: #387D35
}
a:hover{
	color: #00610B;
}
a,
a.button{
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.button{
    background: #00610B;
    color: white;
    border-color: #387D35;
}
.button:hover{
    background: #387D35;
    border-color: #00610B;
}
/* #######################################
######## TYPOGRAPHY STYLES
########################################*/
h1, h2, h3, h4 ,h5 ,h6, span{
    font-family: 'Oswald', sans-serif;
    color: #00610B;
}

p, li{
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
}
body{
    font-family: 'Merriweather', serif;
}
p.copywrite a{
    color: #ccc;
}
p.copywrite a:hover{
    color: white;
}
/* #######################################
######## NAVIGATION STYLES
########################################*/
.top-bar{
    background: white;
    height: 46px;
    border-bottom: 1px solid #999;
    visibility: hidden;
    z-index: 999
}
.top-bar.animated{
    visibility: visible;
}
.top-bar.expanded .title-area{
    background: white;
}
.top-bar-section li:not(.has-form) a:not(.button){
    padding: 27px 1rem;
    background: white;
}
.top-bar-section ul li > a {
    color: #00610B;
    font-size: 1.2em;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}
.top-bar .toggle-topbar.menu-icon a{
    color: #333
}
.top-bar .toggle-topbar.menu-icon a span::after{
    box-shadow: 0 0 0 1px #333333, 0 7px 0 1px #333333, 0 14px 0 1px #333333;
}
.top-bar-section .has-form {
    background: white;
    height: 99px;
    padding: 27px 0.9375rem;
}
.top-bar-section ul li > a.button {
    font-size: 1rem;
    padding: .2em 1em;
    padding-right: 1em;
    background-color: #00610B;
    border-color: #08A91A;
    color: #FFFFFF;
}
.top-bar-section ul li > a.button:hover{
    background-color: #08A91A;
}
.name img{
    background: white;
    height: 30px;
    margin: 8px 15px;
}
.top-bar-section li:not(.has-form) a:not(.button):hover{
    background: #eee;
    background-color: #eee;
    color: #00610B;
}

/* #######################################
######## HEADER STYLES
########################################*/
.welcome{
    background-color: #00610B;
    height: 70vh;
    width: 100%;
    margin-top: -100px;
    position: relative;
    background: url(../images/JG_HeaderImages_Welcome.jpg) no-repeat top center fixed;
    -webkit-box-shadow: inset 0px -9px 24px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px -9px 24px -10px rgba(0,0,0,0.75);
    box-shadow: inset 0px -9px 24px -10px rgba(0,0,0,0.75);
    margin-bottom: 20px;
}
.page-title{
    background-color: #00610B;
    height: 40vh;
    width: 100%;
    margin-top: -100px;
    position: relative;
    -webkit-box-shadow: inset 0px -9px 24px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px -9px 24px -10px rgba(0,0,0,0.75);
    box-shadow: inset 0px -9px 24px -10px rgba(0,0,0,0.75);
    margin-bottom: 20px;
}
.page-title.process{
    background: url(../images/JG_HeaderImages_Process.jpg) no-repeat top center fixed;
}
.page-title.focus{
    background: url(../images/JG_HeaderImages_Focus.jpg) no-repeat top center fixed;
}
.page-title h1{
    position: absolute;
    width: 100%;
    bottom: 50px;
    font-weight: 100;
    color: white;
    text-align: center;
    background: rgba(76,76,76,0);
    background: -moz-linear-gradient(left, rgba(76,76,76,0) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(76,76,76,0)), color-stop(50%, rgba(0,0,0,0.5)), color-stop(100%, rgba(0,0,0,0)));
    background: -webkit-linear-gradient(left, rgba(76,76,76,0) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(left, rgba(76,76,76,0) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(left, rgba(76,76,76,0) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(76,76,76,0) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#000000', GradientType=1 );
}
/* #######################################
######## PAGE STYLES
########################################*/
#welcome .panel{
    float: right;
    margin-left: 20px;
}
#welcome .panel li{
    list-style: none;
}
#welcome .panel li a{
    color: #00610B;
}
#welcome .panel li a:hover{
    color: #08A91A;
}
#welcome .panel .button{
    width: 100%;
    font-weight: 700;
}
#process .panel{
    margin: 20px 50px;
    text-align: center;
}
.styles{
    border: solid 5px white;
}
.styles.left{
    margin: 10px 20px 10px 0;
}
.leaf{
    width: 300px;
}
.tree{
    width: 350px;
}
.flower{
    width: 205px;
}
.building{
	height: 232px;
}
/* #######################################
######## CONTACT STYLES
########################################*/
div#myModal {
    border-top: 10px solid #00610B;
    padding: 0;
}
.reveal-modal .close-reveal-modal {
    color: white;
    cursor: pointer;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: #00610B;
    padding: 5px 12px;
}
.contact-info{
    padding: 15px;
}
.profile{
    float: left;
    margin: 0 20px 20px 0;
}
.google-maps {
    position: relative;
    padding-bottom: 35%; // This is the aspect ratio
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
div#myModal .button{
	display: block;
	margin: 10px auto 20px;
}
.cards{
	margin-top: 10px;
}
/* #######################################
######## FOOTER STYLES
########################################*/
.footer {
    background-color: #00610B;
    text-align: center;
    font-size: 1.2rem;
    padding: 4rem;
    margin-top: 50px;
}
.footer p.copywrite {
    color: #eeeeee;
    font-size: 0.875rem;
    margin: 0;
}
.footer .links a {
    list-style: none;
    font-weight: 300;
    color: #ffffff;
    padding: 3rem 0 2rem;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}
.footer .links a:hover {
    color: #eeeeee;
}
.footer .links a::after {
    content: "•";
    padding: 0 0.4rem 0 0.8rem;
}
.footer .links a:last-child::after {
    content: "";
    padding: 0 0.4rem 0 0.8rem;
}
p.address {
    color: white;
    font-size: 14px;
    line-height: 1.2;
}


@media only screen and (min-width: 641px) and (max-width: 939px) {
    nav.top-bar{
        height: 100px;
    }
    .name img {
        height: 45px;
        margin: 26px 15px;
    }
}

@media only screen and (min-width: 940px) {
    .top-bar{
        height: 100px;
    }
    .name img{
        background: white;
        height: 70px;
        margin: 14px 15px;
    }
}
