html{
    font-size: 62.5%;
}
body{
    margin:0;
    padding:0;
    background-color: white;
    display: flex;
    flex-direction: column;
}
.header{
    background-color: #096A2E;
    position: fixed;
    min-height: 13%;
    width: 100%;
    display: flex;
    flex-direction: row;
    z-index: 1;
    border-bottom: solid;
    border-color: #c9efc7;
    border-width: .5px;
}
.logo-container{
    min-width: 60%;
}

.logo{
    left:0;
    max-height: 10rem;
    margin-left: 2rem;
    margin-top: 1rem;
}

.nav-bar-container{
    display: flex;
    flex-direction: row;
    position: relative;
    min-width:40%;
}

.nav-bar-item{
    height: 6rem;
    width: 20rem;
    text-align: center;
    margin-left: 3rem;
    margin-top: 5.5rem;
}

.nav-bar-name{
    color: #c9efc7;
    font-size: 2.5rem;
}

.main-container{
    height: 90%;
    margin-top: 10;
}
.hero-image-container{
    width:100%;
    height: 80em;
    background-image:url("images/home-page/health-wealth.jpeg");
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}

.second-container{
    height:30em;
    width: 100%;
    margin:auto;
    margin-top: -3rem;
    display: flex;
    flex-direction: column;
    background-color: #096A2E;
}
.second-container-middle{
    height:100%;
    width:80%;
    margin:auto;
    color: #c9efc7;
}

.second-container-text-container{
    width: 30%;
    margin: auto;
    margin-left: 2rem;
}

.second-container-text{
    font-size:3.3rem;
    text-align: left;
}

.what-we-do-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 5rem;
}

.jobs {
    height: 6rem;
    width: 26rem;
    position: relative;
    margin-right: 10rem;
    border: solid;
    border-width: 1px;
}

.jobs:hover{
    transform: scale(1.2);
    background-color: #06a141;
    height: 20rem;
}

.jobs-description{
    margin-left: .5rem;
    margin-top: .5rem;
    font-size: 3rem;
    color: #c9efc7;
    text-align: center;
}

.therapy-services{
    display: none;
    font-size: 1.6rem;
    padding: .7rem;
    font-weight: 500;
}

.jobs:hover .therapy-services{
    display: grid;
}

.divider-container{
    width: 100%;
    height: 51rem;
    display: flex;
    background-color: #06a141;
}

.divider-text-container{
    height:100%;
    width:50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-text-container h2 {
    font-size: 6rem;
    text-align: center;
    color: white;
}

.divider-image-container{
    height:100%;
    width:50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-image{
    height:100%;

}

.contact-us-container{
    width:100%;
    height: 30rem;
    background-color: #096A2E;
    color: #c9efc7;
}

.contact-us-header{
    text-align: center;
    font-size: 3.5rem;
}

.contact-us-information-container{
    display: flex;
    flex-direction: row;
    width: 100%;
}


.contact-us-information-container h1 {
    font-size: 4rem;
    text-decoration: underline;
    font-weight: 200;
}

.contact-us-information-container h2 {
    font-size: 2.5rem;
    font-weight: 100;
}

.email-container{
    width: 50%;
    
}

.email-text{
    text-align: center;
}

.phone-container{
    width: 50%;
    left:0;
}

.phone-text{
    text-align: center;
}

.footer-container{
    min-height: 10rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: black;
    color: white;
}
.footer-left-container {
    width:50%;
    height: 100%;
}
.footer-right-container{
    width:50%;
    height:100%;
}
@media only screen and (max-width: 992px){
    .header{
        min-height: 8%;
    }

    .logo-container{
        min-width: 10%;
        
    }

    .logo{
        bottom:0;
        left:0;
        max-height: 4rem;
        margin-left: 2rem;
        margin-top: 1rem;
    }

    .nav-bar-item{
        height: 2rem;
        width: 8rem;
        text-align: center;
        margin-left: 2.5rem;
        margin-top: 5.5rem;
    }
    
    .nav-bar-name{
        color: #c9efc7;
        font-size: 1rem;
    }

    .hero-image-container{
        height: 35rem;
    }

    .what-we-do-container{
        flex-direction: column;
    }
    
    .jobs{
        margin-bottom: 5rem;
        margin-left: 4rem;
    }

    .divider-container{
        flex-direction: column;
        height:18rem;
        text-align: center;
    }

    .divider-text-container{
        width: 100%;
    }

    .divider-text-container h2{
        font-size: 3rem;
    }

    .divider-image{
        display: none;
    }


    .email-container{
        margin-left: 10.5rem;
    }

    .phone-container{
        margin-left: 10.5rem;
    }

    .contact-us-information-container{
        flex-direction: column;

    }

    .contact-us-information-container h1{
        font-size: 2rem;
    }

    .contact-us-information-container h2{
        font-size: 2rem;
    }

}

