*{
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display:flex;
    top:0%;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: sticky;
    

}
nav img{
    width: 200px;

}

.search-input, .search-button {
    padding: 10px;
    font-size: 17px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
  }
  
  .search-input {
    flex-grow: 1;
    border-radius: 10px 0 0 10px;
  }
  
  .search-button {
    border-radius: 0 10px 10px 0;
    background: #58C568;
    cursor: pointer;
    transition: 0.5s;
    height: 30px;
    width: 25;
  }
  
  .search-button:hover {
    background: #21754e;
  }

.nav-links{
    flex: 1;
    text-align: right;

}
.nav-links ul li{
    list-style: none;
    display:inline-block;
    padding: 8px 12px;
    position: relative;

}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;


}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #58C568;
    display: block;
    margin: auto;
    transition: 0.3s;

}
.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: #58C568;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;

}    
.text-box h1{
    font-size: 65px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 15px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;

}
.hero-btn:hover{
    border: 1px solid #21754e;
    background: #21754e;
    transition: 0.5s;
}

nav .fa{
    display: none;
}
#skip-links{
    width: 100%;
    background-color: black;
}
#skip-links a{
    color: white;}


@media(max-width: 700px){
    .nav{
        height: 60px;
    }
    .text-box h1{
        font-size: 36px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #21754e;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;


    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size:22px;
        cursor:pointer;

    }
    .nav-links ul{
        padding: 30px;
    }

    .search-form{
        padding: 15px;

    }

    .search-button {
        border-radius: 0 10px 10px 0;
        background: #58C568;
        cursor: pointer;
        transition: 0.5s;
        height: 76px;
    }
    .search-input {
        flex-grow: 1;
        border-radius: 10px 0 0 10px;
        width: 100px;
        height: 75px;
      }
    

}


/*testimonials*/
h1{
    font-size: 36px;
    font-weight: 600;
    
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
p{
    color: #777;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.reviews{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.reviews-col{
    flex-basis: 28%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #f2faf4;
    padding: 25px;
    cursor: pointer;
    display: flex;

}
.reviews-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.reviews-col p{
    padding: 0;
}
.reviews-col h3{
    margin-top: 15px;
    text-align: left;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .reviews-col img{
        margin-left: 0px;
        margin-right: 15px;
    }

 }

/*footer*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}    
.icons .fa{
    color: #21754e;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;

}

/*Sub Header*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background4.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}   
.sub-header h1{
    margin-top: 100px;
}

/*contactus*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}
  
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #21754e;
    margin: 10px;
    margin-right: 30px;

}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.grn-btn{
    border: 1px solid #21754e;
    background: transparent;
    color: #21754e;
}
.grn-btn:hover{
    color: #fff;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
/*Our-team*/
.sub-header1{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background3.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}   
.sub-header1 h1{
    margin-top: 100px;
}

.Our-team{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.Our-team-col{
    flex-basis: 28%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #f2faf4;
    padding: 25px;
    cursor: pointer;
    display: flex;

}
.Our-team-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.Our-team-col p{
    padding: 0;
}
.Our-team-col h3{
    margin-top: 15px;
    text-align: left;
}
.Our-team-col:hover{
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.5s;
}
.sub-header2{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background5.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}   
.sub-header2 h1{
    margin-top: 100px;
}

/*AboutUs*/

.About-Us{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.About-us-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.About-us-col img{
    width: 100%;
    border-radius: 10px;
}
.About-us-col p{
    padding: 0;
    text-align: center;
    
}
.About-us-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;

}
.About-Us li{
    margin: 0 10px;
    padding: 5px 0 5px 20px;
    font-size: 18px;
}

.imgstyle{
    margin: 100px auto;
    width: 80%;
    background-image: url(images/img5.png);
    background-position: center top;
    background-size: cover;
    border-radius: 20px;
    text-align: center;
    padding: 100px 0;
    height: 100px;
}

.About-Us p{
    font-size: 18px;
    color: #1c1c1c;
    padding: 25px;
}
.aboutussec li {
    margin: 0 10px;
    padding: 5px 0 5px 20px;
    font-size: 18px;
}

/*Testimonials*/

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.sub-header3{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background3.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header3 h1{
    margin-top: 100px;
}
.test-col{
    flex-basis: 31%;
    background: #f2faf4;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}