*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h1{
    color: white;
}
h3{
    font-size: 1.2em;
    margin-bottom: 10px;
}
header{
    height: 100px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #187402;
    z-index: 10;
}
header a{
    text-decoration: none;
    display: inline-block;
    font-size: 1.1em;
    color: rgb(255, 255, 255);
}
.logo{
    height: 40px;
    width: 50px;
    background-color: #fff;
    margin: 10px 0 5px 20px;
    border-radius: 25%;
    text-align: center;
}
.logo a{
    display: inline-block;
    height: 100%;
    width: 100%;
}
.main-menu{
    display: inline-block;
    margin: 10px 20px;
}
.main-menu a{
    margin-left: 20px;
}
.main-menu a:first-child{
    margin-left: 0;
}
main{
    background-color: rgb(255, 255, 255);
}
.section-heading{
    padding: 50px 0 0 20px;
    border-bottom: 1px solid #187402;
}
.home-section{
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.home-section img{
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.business-caption{
    color: #fff;
    position: relative;
    text-align: center;
    top: -75%;
    z-index: 0;
}
.business-name{
    font-size: 4em;
    margin-left: auto;
    margin-right: auto;
}
.caption-text{
    border-radius: 15px;
    color: #000;
    display: inline-block;
    background-color: aqua;
    font-size: 1.5em;
    opacity: 0.6;
    margin: 20px 50px;
    padding: 15px 10px;

}
.about-image-container{
    border-radius: 15px;
    margin: 20px auto;
    height: 320px;
    width: 350px;
    margin-top: 20px;
}
.about-image{
    border-radius: 15px;
    width: 100%;
    height: 100%;
}
.vision, .mission{
    padding: 20px;
}
.team-card{
    display: block;
    height: 400px;
    max-width: 380px;
    margin-left:  auto;
    margin-right: auto;
    margin-top: 30px;
}
.team-photo{
    background-color:#fff;
    height: 80% ;
    width: 100%;
}
.profile-photo{
    width: 100%;
    height: 100%;
    display: block;
}
.team-position, .team-name{
    color: #fff;
    font-size: 1em;
    width: 100%;
    height: 40px;
    background-color:rgb(96, 136, 91);
    margin: auto;
    padding-top: 5px ;
}
.team-position{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.team-name{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.team-position p, .team-name p{
   font-size: 1.2em;
   text-align: center;
}
.team-profile{
    margin: auto;
    padding: 10px;
    text-align: justify;
    width: 90%;
}
.projects-container{
    padding: 15px;
}

.projects-container p{
    padding: 10px 0;
}
table, th{
    border: 2px solid black;
    border-collapse:collapse;
    padding: 10px;
}
td{
    border: 1px solid black;
    border-collapse:collapse;
    padding: 10px;
}
tr:nth-child(odd) {background-color: rgb(223, 253, 219);}
th{
    background-color: #187402;
    color: #fff;
}
.contact-section{
    position: relative;
}
.call-image{
    width: 100%;
    height: 80%;
    overflow: hidden;
}
.call-image img{
    width: 100%;
}
.contact-details{
    position: absolute;
    top: 50px;
    left: 50px;
    width: 300px;
    padding-top: 100px;
}
.contact-info{
    display: flex;
    flex-direction: row;
    margin: 20px 10px;
    background-color: rgb(193, 250, 217);
    opacity: 0.5;
    border-radius: 5px;
    padding: 10px;
}
.contact-info a{
    color: black;
}
.contact-icon{
    margin-right: 20px;
    height: 25px;
    width: 25px;    
}
.contact-icon img{
    height: 100%;
    width: 100%;
}

footer{
    height: 50px;
    background-color: #187402;
    color: white;
    text-align: center;
    padding-top: 20px ;
}

@media only screen and (min-width: 720px){
    .container{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    main{
        border-left: 1px solid gray;
        border-right: 1px solid gray;
    }
}
@media only screen and (min-width: 800px){
    .container{
        width: 100%;
    }
    .about-container{
        display: flex;
    }
    .team-container{
        display: flex;
        flex-wrap: wrap;
    }
    .team-card{
        display: block;
        height: 350px;
        width: 300px;
        max-width: 350px;
        margin: 30px 50px;
    }
}