/* font family  
font-family: 'Baloo Bhaijaan 2', cursive;
font-family: 'Bree Serif', serif;
font-family: 'Dancing Script', cursive;
font-family: 'Gelasio', serif;
font-family: 'Lora', serif;
font-family: 'Permanent Marker', cursive;
*/

/* CSS RESET */
*{
    margin: 0;
    padding:0;
}

/* css variable */
:root{
    --navbar-height:50px;
}
/* navigation bar */
#navbar{
    display: flex;
    align-items: center;
    position: relative;
    top: 0px;
    
}
/* navigation bar:logo and image */
#logo{
    margin: 8px 32px;
}

#logo img{
    height: 115px;
    margin: 11px 10px;
}

/* navigation bar: list style */


#navbar ul{
    display: flex;
    font-family: 'Baloo Bhaijaan 2', cursive;
}
#navbar::before{
    content: "";
    background-color: rgb(0, 0, 0);
    position: absolute;
    top:0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.87;
}
#navbar ul li{
    list-style: none;
    font-size: 1.5rem;
    
}
#navbar ul li a{
    color: white;
    display: block;
    padding: 4px 22px;
    border-radius: 20px;
    text-decoration: none;
}
#navbar ul li a:hover{
    color:black;
    background-color: rgb(209, 172, 102);

}

 /* home section */
 .home{
     display: flex;
     flex-direction: column;
     padding: 3px 200px;
     justify-content: center;
     align-items: center;
     height: 803px;
    }
    
 .home::before{
     content: "";
    background: url('front.jpg') no-repeat center center/cover;
    position: absolute;
    top:0px;
    left: 0px;
    height: 930px;
    width: 100%;
    z-index: -1;
    opacity: 1;
}

/* services section */
#services{
    margin:34px;
    display: flex;
}
#services .box{
    border:2px solid brown;
    padding: 34px;
    margin: 25px 6px;
    border-radius: 24px;
    background-color: bisque;
}
#services .box img{
    height: 170px;
    display: block;
    margin: auto;
}

/* utility class */
#home h1{
    color: white;
    text-align: center;
    font-family: 'Bree Serif', serif;
    Font-size: 4.7rem;
}

#home p{
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Bree Serif', serif;
}
.h-primary{
    font-size: 3.8rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;
}
.h-secondary{
    font-size: 2.8rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;
}

.btn{
    margin-top: 40px;
    padding:6px 22px;
    border:2px solid white;
    background-color:burlywood;
    color: white;
    font-size: 1.5rem;
    border-radius: 9px;
    cursor: pointer;
}
.center{
    text-align: center;
}
html{
    scroll-behavior: smooth;
}

/* client section */

#client-section{
    /* height: 344px; */
    position: relative;
}

#client-section::before{
    content: "";
    position: absolute;
    background: url('front2.jpg') no-repeat center;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

#client{
    display: flex;
    justify-content: center;
    align-items: center;
   
}

#client img{
    height: 22vh;
}

.client-item{
    padding: 40px;
}

/* contact section */


#contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
    background: url('front2.jpg') no-repeat center ;
    
}

footer{
    background: black;
    color: white;
    padding: 9px 20px;
    margin-top: 45vh;
}

#contact{
    height: 344px;
    /* position: relative; */
}
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
    border-radius: 10px;
    font-size: 1.5rem;
}
#contact-box form{
    width: 40%;

}
#contact-box label{
   font-size: 1.8rem;
   font-family: 'Baloo Bhaijaan 2', cursive;
    
}
#contact-box input,#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    font-family: 'Baloo Bhaijaan 2', cursive;
}