*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}


section{
    padding:80px;
}


.banner{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items: center;
    background:#111;
    background:url(images/1.png);
    background-size:cover;
    background-position:right center;
}

.banner h2{
    font-size:2.5em;
    color:#444;
    font-weight: 300;
    line-height: 1.5em;
}

.banner h2 span{
    font-size: 1.2em;
    color:#efefef;

}


.banner h3{
     color:#fff;
     font-size: 1.5em;
     font-weight: 500;
}


.btn{
    position: relative;
    background:#009e66;
    display: inline-block;
    color: #000;
    margin-top: 20px;
    padding: 10px 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
}



.heading{
    width:100%;
    text-align: center;
    margin-bottom: 30px;
    color:#111;
     
}

.heading p{
     font-style: italic;
     font-size: 14px;
}

.heading h2{
    font-size: 3em;
    color:#009e66;
}

.content{
    display: flex;
    justify-content: space-between;
}


.contentBx{
    padding-left: 40px;
    text-align: justify;
}

.propic{
    width: 300px;
    height: 350px;
    border-top-left-radius: 30%;
    border-bottom-right-radius: 30%;
}



.contentBx h2{
    font-weight: 300;
    margin-bottom: 10px;
}

.heading.bottom{
    display: flex;
    justify-content: space-between;
    flex-direction:row;
    align-items: center;
}
.btn.round{
    border-radius: 50px;
}

.bt{
    margin-top: 20px;
}

.w50{
    min-width: 25%;
}
img{
    max-width: 100%;
}

header{
    background: #111;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    transition:0.5s;
}

header .logo{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;  
    letter-spacing: 2px;
}

header ul{
    position: relative;
    display: flex;
}

header ul li{
    list-style-type: none;
    position: relative;
}
header ul li a{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
}


header.sticky{
    
    background:#fff;
    padding: 20px 100px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

header.sticky .logo,
header.sticky ul li a
{
    color:#000;
}



.services{
    background: #111;
}
.heading.white p{
    color: #fff;
}

.services .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;

}

.services .content .servicesBx{
    flex: 0 0 30%; 
    max-width: 30%;
    box-sizing: border-box;
    color: #fff;
    background: #161616;
    margin: 10px 15px;
    padding: 30px 15px;
    text-align: center;
    max-width: 360px;
}

.services .content .servicesBx:hover{
    border-bottom:2px solid #009e66;
    cursor:pointer;
}


.services .content .servicesBx .fab{
    color: #009e66;
}
 

.work .content{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.work .content .workbox{
    width: 500px;
    padding: 20px;
}

.work .content .workbox img{
    max-width:100%;
    border:1px solid rgba(0,0,0,0.4);
    display: block;
    margin: 0 auto;
}

.work .content .workbox img:hover{
    box-shadow: 0 0 20px 5px #fff;
    transform: scale(1.008);
    transition: 0.5s;

}

.work .content .workbox p{
    text-align: center;
}

.work .content .workbox a:link,
.work .content .workbox a:visited,
.work .content .workbox a:active 
{
    color: #161616;
    text-decoration: none;
    font-weight: 600;
}

.testimonial{
    background:#111;
}

.testimonial .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.testimonial .content .testimonialBx{
    background: #161616;
    margin:20px;
    padding:60px 40px;
    max-width:calc(50% - 40px);
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 20%;

}

.testimonial .content .testimonialBx p{
    color: #ffff;
    font-style: italic;
    font-size: 18px;
    font-weight: 100;
    font-family: "Times New Roman", Times, serif;
    line-height: 24px;
    cursor: pointer;
}
.testimonial .content .testimonialBx:hover{
    border-bottom: 2px solid #009e66;
}
.testimonial .content .testimonialBx h3{
    color: #009e66;
    margin-top:40px;
    text-align: end;
    font-weight: 200;
    line-height: 20px;
    font-style: italic;
    line-height: 1.7em;
    font-size: 20px;
}

.contact{
    background: #111;
}
.formBx{
    min-width: 60%;
}
.formBx form{
    display:flex;
    flex-direction:column;
}
.formBx form h3, 
.contactinfo h3{
    color: #fff;
    font-size:20px;
    font-weight: 500;
    margin-bottom:10px;
}


.formBx form input,
.formBx form textarea
{
    margin-bottom: 20px;
    padding: 15px;
    font-size: 16px;
    background: transparent;
    border:none;
    outline:none;
    background:#161616;
    color:#fff;
    resize:vertical;
}


.formBx form input::placeholder,
.formBx form textarea::placeholder
{
    color:#999;
    opacity: 0.5;
}


.formBx form input:focus,
.formBx form textarea:focus{
    border-bottom:1px solid #009e66;
    transition:0.5s;
}


.formBx form input[type="submit"]{
    background:#009e66;
    max-width:250px;
    font-weight: 600;
    border-radius:50px;
    cursor:pointer;
    letter-spacing: 2px;
}
.contactinfo{
    min-width:40%;
} 

.contactinfo p{
    color: #999
}

.contactInfoBox{
    position: relative;
}


.contactInfoBox .box{
    position: relative;
    padding: 20px 0;
    display:flex;
}

.contactInfoBox .box .icon{
    color: #fff;
    min-width: 40px;
    padding-top: 4px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 24px;
}

.contactInfoBox .box .text{
    color: #999;
    margin-left: 20px;
    font-size: 16px;
    flex-direction: column;
    font-weight: 300;
}

.contactInfoBox .box .text p,address{
    font-style: normal;
    font-weight: 300;
    color: #999;
}

.contactInfoBox .box .text h3{
    color: #009e66;
    font-weight: 500;
    margin: 0;
}

.contactInfoBox .boxSocial{
    display: flex;
    flex-direction: row;
    padding-left: 60px;
    letter-spacing: 15px;
}

.contactInfoBox .boxSocial .fab{
    font-size: 42px;
    color: #009e66;
    cursor:pointer;
}

footer.copyright{
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
}

@media (max-width: 991px)
{
    header,
    header .sticky{
        padding: 20px 50px;
    }

    header .menu{
        display: none;
    }
    header ul li a{
        font-size: 20px;
        color: #111 !important;
        font-weight: 400;
        margin: 10px 0;
    }
    
    
    header .menu{
        position: fixed;
        background: #fff;
        display: block;
        top: 68px;
        left: -100%;
        padding: 100px 50px;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.5s;
        border-top: 1px solid rgba(0,0,0,0.2)
    }

    header .menu.active{
        position: fixed;
        background: #fff;
        display: block;
        top: 68px;
        left: 0;
        padding: 100px 50px;
        width: 100%;
        height: 100vh;
        text-align: center;
    }

    .toggle {
        width: 40px;
        height: 40px;
        background-image: url(images/menu2.png);
        background-position:center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor:pointer;
    }
    .toggle.active {
        width: 40px;
        height: 40px;
        background-image: url(images/close.png);
        background-position:center;
        background-repeat: no-repeat;
        background-size: 25px;        
        cursor:pointer;

    }
    header.sticky .toggle{
        filter:invert(1)
    }
    section{
        padding:100px 30px;
    }
    .banner{
        padding: 150px 50px 100px;
    }
    .banner h2{
        font-size: 1.5em;
    }
    .banner h3{
        font-size: 1em;
    }
    .textBx{
        position:relative;
        top:170px;
    }
    .btn{
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 50px;
    }
    .content{
        flex-direction:column;
    }
    .contentBx{
        padding: 0;
    }
    .content .w50 img{
        display: block;
        margin:0 auto 30px auto;
    }
    .contentBx h2{
        font-size:20px;
        font-weight: 300;
    }

    .contentBx h3{
        font-size:20px;
    }
    .heading h2{
        font-size: 24px;
    }
}