
body , html{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}


 /* Navigation menu */
.navbar{
  display: flex;  
  position: relative;
  font-family: 'Baloo Bhai 2', cursive; 
  font-weight: bolder;
  font-size: larger;
  }

.navbar ul{
 display: flex;

}

.navbar li{
  
    list-style: none;
    height: 25px;
    margin: 5px 10px;
}


.navbar ul::before{
  content: "";
  background-color: black;
  position: absolute;
  display: inline;
  height: 48px;
  width: 555px;
  opacity: 2.8;
  z-index: -1;
  border-radius: 57px;
  border-style: solid;

    
}
.navbar li a{
    color: white;
    display: block;
    padding: 3px 22px;
    border-radius: 15px;
    text-decoration: none;
    
}
.navbar li a:hover{
    color: black;
    background-color: white;
  }

#logo{
    height: 66px;
    width: 69px;
    margin: 3px 31px;
}

h3{
  color: white;
  position: relative;
  right: -14px;
  font-weight: bolder;
  top: -28px;

}
/* Home Section */

#home{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 500px;
  font-family: 'Bree Serif', serif;
  color: white;
  padding: 3px 521px;

}
#home::before{
content: "";
background-image: url(img/bg1.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
height: 800px;
width: 100%;
position: absolute;
z-index: -1;
opacity: 0.9;
top: 0px;
left: 0px;
}


#services-container{
    text-align: center;
    position: relative;
    top: 150px;
 }

.services{
display: flex;
}

.box{
  width: 33%;
  margin: 0px 49px;
  background-color: #e1caca;
  border-radius: 21px;
  font-family: 'Baloo Bhai 2', cursive;
  padding-bottom: 0px;
}



.box img{
  width: 70%;
  padding: 47px 0px;
  padding-bottom: 0px;

}

.box:nth-child(2) img{
 height: 43%; 
}

/* clients section */

#clients-container{
  text-align: center;  
  position: relative;
  top: 200px;  
 }  
 
 
 

.clients img{
  margin: 9px 45px;
  height: 168px;
}
#clients-container::before{
  content: "";
    background-image: url(img/bg2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 378px;
    width: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.3;
    top: 0px;
    left: 0px;
}

/* Contact section */


#contact-container{
 position: relative;
 top: 260px;
 font-family: 'Bree Serif', serif;
display: flex;
flex-direction: column;
text-align: center;
}

 #contact-container::before{
  content: "";
  background-image: url(img/contact.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: -5px;
  left: 0px;
width: 100%;
height: 40rem;
z-index: -1;
opacity: 0.8;

 }

 .form{
 display: flex;
 align-items: center;
 justify-content: center;
 padding-bottom: 34px;
 text-align: start;
 }
.form input , textarea{
  background-color: #ffeded;
    color: rgb(12, 1, 1);
    font-family: 'Baloo Bhai 2', cursive;
    padding: 7px 20px;
    margin: 8px 30px;
    border: 2px solid #3c473c;
    border-radius: 15px;
    font-size: medium;
    width: fit-content;
    width: 500px;
}
.form textarea{
  height: 100px;
}


.form label{
font-weight: bolder;  
}
.form .btn{
  position: relative;
  top: 168px;
  left: 35px; 
} 
/* Utility classes */
.h-primary{
  font-size: 3.8rem;
    padding: 0px;
  font-family: 'Bree Serif', serif;
  
}

.btn{
  color: white;
  background-color: #b03e2a;
  padding: 10px 19px;
  margin: 29px 13px;
  font-size: 1.0rem;
  border: 2px solid #c26d45;
  border-radius: 16px;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover{
  background-color: #921c07;
    font-weight: bolder;
    padding: 10px 19px;
    font-size: larger;
}



