/* CSS resets */

*{
    margin: 0px;
    padding: 0px;
}

html{
    scroll-behavior: smooth;
}

/* CSS Variables */
:root{
    --navbar-height:399px;
}

/* Navigation Bar: */

#navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
}

#navbar::before{
    content: "";
    background-color:  black;
    position: absolute;
    top: 0px;
    left: 0px;
    height:100%;
    width: 100%;
    z-index: -1;
    opacity: .64;
}

/* Navigation Bar: Logo and Image*/

#logo{
    margin: 9px 15px;
}
#logo img{
    height: 59px;
    margin: 6px 9px;
}

/* Navigation Bar: list style */

#navbar ul {
    display: flex;
}

#navbar ul li{
    list-style: none;
   font-size: 1.3rem;
   font-family: "Baloo Bhaijaan 2", sans-serif;
}
#navbar ul li a{
    color: white;
    display: block;
    text-decoration: none;
    padding:11px 22px;
    border-radius: 20px;
}

#navbar ul li a:hover{
    color: black;
    background-color: white;
}

/* Home Section */

#home{
    display: flex;
    flex-direction: column;
    padding: 56px  153px;
    height: 472px;
    justify-content: center;
    align-items: center;
}
#home::before{
    content: "";
    background:url(../bg2.jpg) no-repeat center center/cover ;
    top: 0px;
    left: 0px;
    position: absolute;
    height: 700px;
    width: 100%;
    z-index: -1;
    opacity: .84;
}

#home h1{
    color: white;
    text-align: center;
    font-family: "Bree Serif", serif;
}

#home p{
    color: white;
    font-size: 1.8rem;
    text-align: center;
}



/* Services Section */

#services{
    margin: 34px;
    display: flex;
}
#services .box{
    border: 2px solid brown;
    padding: 16px;
    margin:16px 15px;
    border-radius: 12px;
    background-color: #fff8f8;
}
#services .box img{
    height: 160px;
    display: block;
    margin: auto;
}

#services .box p{
    font-family: "Bree Serif", serif;
}

/* Clients Section */

#clients-section{
    position: relative;
    height: auto;
    margin-bottom: 30px;
}
#clients-section::before{
    content: "";
    background: url('../bg1.jpg');
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
}
#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
#clients  img{
    display: block;
    justify-content: center;
    align-items: center;
    height: 97px;
}

.client-item{
    padding: 34px;
}

/* Contact Section */

#contact{
    position: relative;
}

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

#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}

#contact-box form{
    width: 40%;
}

#contact-box label{
    font-family: "Bree Serif", serif;
   font-size: 1.4rem;
}

#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    font-size: 1.5rem;
}

footer{
    background-color: black;
    color: white;
    padding: 3px 20px;
}

/* Utility Classes */
.h-primary{
    font-family: "Bree Serif", serif;
    font-size: 3.8rem;
    padding: 12px;
}
.h-secondary{
    font-size: 2.0rem;
    padding: 12px;
    font-family: "Bree Serif", serif;
}

.btn{
    padding: 12px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    border-radius: 12px;
    margin: 15px;
    font-size: 1.2rem;
    cursor: pointer;
}

.center{
    text-align: center;
}

/* Media Queries */

@media only screen and (max-width:1020px){
    
}
