
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;500;700&display=swap');
*{
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.774);
    padding: .5em 10%;
    position: fixed;
    z-index: 2;
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.062);
    -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.068);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.075);
}
header h1{
    font-size: 1.6rem;
    
    cursor: default;
}
header h1 a{
    color: rgb(3, 65, 122);
}
.navigation li{
    display:inline-block;
    padding: 0 .5em;
    font-size: 1.1rem;
    transition: all .3s ease 0s;
    color: rgb(3, 65, 122);
    
}
.navigation li a{
    color: rgb(3, 65, 122);
}
.navigation li:hover{
    cursor: pointer;
    transform: scale(1.03);
}
.home{
    padding: 2.5rem 9%;
    background-color:white;
}
.slider{
    
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}
.content{
    flex:1 1 50%;
    padding-left: 2em;
}
.image {
    flex: 1 1 45%;
    
}
.image img{
    width: 100%;
}
.content span{
    font-size: 1.5rem;
    color: rgb(3, 65, 122);
}
.content h3{
    color: rgba(0, 128, 0, 0.8);
    font-size: 3.5rem;
}
.content p{
    font-size: 1.1rem;
    padding: .5rem 0;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
}
.btn{
    margin-top: 1rem;
    display: inline-block;
    font-size: 1rem;
    color: white;
    background: rgba(0, 128, 0, 0.8);
    padding: .4rem .95rem;
    text-decoration: none;
    cursor: pointer;
    border-radius: .3rem;
    transition:.3s ease 0s;
}
.btn:hover{
    background: rgb(3, 65, 122);
    letter-spacing: .03em;
}
/*service section styling*/
.bigcard{
    background-color:whitesmoke;
    padding-bottom: 3rem;
}
.title{
    font-size: 2rem;
    padding-top: 3rem;
    text-align: center;
    color: rgb(3, 65, 122);
}
.wrapper-box{
   margin: 0rem 10%;
   text-align: center;
   position: relative;
   
}
.wrapper-box .fas{
    font-size: 3rem;
    color: rgba(3, 64, 122, 0.7);
    padding-top: 3.5rem;
}
.wrapper-box h3{
    font-size: 1.4rem;
    color: rgb(3, 65, 122,0.7);
}
.wrapper-box h3{
    font-size: 1.4rem;
    color: rgb(3, 65, 122,0.7);
}
.servicedetails{
   padding-top: .8rem;
}
.servicedetails p{
    padding-top: .8rem;
 }
    
/*service section style ending*/
/*contact section styling strt*/
.contact{
    background: rgb(3, 65, 122);
    align-content: center;
    padding-bottom: 3rem;
}

.contactus{
    width: 40%;
    margin: auto;
    margin-top: 1.5rem;
    padding: 0rem 4rem;
    text-align: center;
}
.contacthead{
    color: white;
    padding-top: 3rem;
    text-align: center;
    font-size: 2rem;
}
input{
    width: 100%;
    margin-bottom: 1rem;
    padding: .3rem;
    border: none;
    border-radius: .2rem;
    background-color: whitesmoke;
}
textarea{
    width: 100%;
    padding: .2rem;
    height: 10rem;
    border: none;
    border-radius: .2rem;
    background-color: whitesmoke;
}
.contactus label{
    color: white;
}
.sbtn{
    margin-top: 5rem;
    font-size: 1.2rem;
    color: white;
    background:green;
    padding: 1rem 2rem;
    cursor: pointer;
    border-radius: .3rem;
    border: none;
    width: 100%;
    
}
.clienttitle{
    text-align: center;
    margin-top: 1.5rem;
    opacity: .5;
}

footer{
    padding: 3rem 3rem 1.5rem 3rem;
    text-align: center;
    font-size: .9rem;
    opacity: .6;
}
footer .cpy{
    margin-top: 2rem;
}



@media(max-width:480px){
    .navigation{
        display: none;
    }
    header h1{
        margin-left: 50%;
        transform: translate(-50%);
    }
    .contactus{
        width: 80%;
        margin: auto;
        margin-top: 1.5rem;
        padding: 0rem 1.5rem;
        text-align: center;
    }
    text area{
        height: 6rem;
    }
    .sbtn{
        margin-top: 2.5rem;
    }
}
@media(max-width:768px){
    .contactus{
        width: 80%;
        margin: auto;
        margin-top: 1.5rem;
        padding: 0rem 1.5rem;
        text-align: center;
    }
    text area{
        height: 6rem;
    }
    .sbtn{
        margin-top: 2.5rem;
    }
}