/* css reset */
*{
    margin: 0;
    padding: 0;
}
/* css varibles */
:root{
    --navbar-height:59px;
}
/* navbar */

#navbar{
    display: flex;
    align-items: center;
    position:relative ;
    top: 0px;
}

#navbar::before{
    content: "";
    background-color: #8b8b8b ;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.99 ;
}

/* navigation bar : logo and image */
#logo{
    margin: 10px  34px ;
}
#logo img{
    margin: 3px  6px ;
    height: 59PX;
}
/* navigation bar list stying */

#navbar ul{
    display: flex;
    font-family: 'Baloo Bhai 2', cursive;
}

#navbar ul li{
    list-style: none;
    font-size: 1.3rem;
}

#navbar ul li a{
    color: #000000;
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none;
}

#navbar ul li a:hover{
    color:white;
    background-color: #a52a2a;
}

/* home section  */
#home{
    display: flex;
    padding: 48.9px 200px;
    height:515.7px;
    justify-items: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#home::before{
    content: "";
    position: absolute;
    background:url(https://cdn.pixabay.com/photo/2016/07/21/12/14/food-1532380_960_720.jpg)no-repeat center center/cover ;
    height: 93.3%;
    width: 100%;
    z-index: -1;
    opacity:0.89 ;  
    top: 0px;
    left: 0px;
    
}

#home h1{
    color:#000000;
    text-align: center;
    font-size: 3.8rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;
}

#home p{
    color:#000000;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Bree Serif', serif;
}

/* services section */

.services-container{
    background-color: white;
}

#services{
    margin: 34px;
    display: flex;

}
#services .box{
    border: 2px solid rgb(17, 0, 255);
    padding: 34px;
    margin: 25px 6px;
    border-radius: 28px;
    background-color: rgb(213 156 248 / 61%);
    margin-bottom: 20px;


}
#services .box img{
    height: 160px;
    display: block;
    margin: auto;
}

#services .box p{
    font-family: 'Bree Serif', serif;
    font-size: 23px;
}

#services{}
#services{} 

/* client section */

.client-section::before{
    content: "";
    position: absolute;
    background:url(https://cdn.wallpapersafari.com/96/86/cr70OB.jpg) no-repeat center center/cover;
    width: 100%;
    height: 100px;
    z-index:-1;
    opacity: 0.4;

}

.clients{
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-item{
    padding: 34px;


}

.clients img{
    height: 124px;
}

/* contact section */

#contact{
    position: relative;
    /* top: 249px; */
}

#contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background:url("https://assets.afinite.co.uk/wp-content/uploads/2017/03/email-filtering1_03-1024x439.jpg") no-repeat center center/cover;
}

/* utilaty class */
.h-primary{
    font-size: 3.8rem;
    padding: 12px;
    
}

.h-secondary{
    font-size: 2.3rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;

}

.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px ;
    font-size: 1.5rem;
    border-radius: 10px;
}

.centre{
    text-align: center;
}

footer{
    position: relative;
    /* top: 250px ; */
    background-color: #000000;
    color:white;
}

#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom:34px;
}

#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius:9px;
    font-size: 1.1rem;

}

#contact-box form{
    width: 40%;
    
}
#contact-box label{
    font-size:1.3rem;
    font-family:'Bree Serif', serif;
}

