@import url('https://fonts.googleapis.com/css2?family=Baloo+Tamma+2&family=Bree+Serif&display=swap');

*{
    margin:0;
    padding:0;
    font-family: 'Baloo Tamma 2', cursive;
}

html{
    scroll-behavior: smooth;
}

/* =================LOGO================= */
#logo{
    margin: 12px 13px;
}
#logo img{
    width: 50px;
    height: 50px;
    margin: 2px 3px;
}

/* ================NAVBAR================ */
#navbar{
    display: flex;
    align-items: center;
    position: relative;
    /* position: sticky; */
    top: 0px;
}
#navbar ul{
    display: flex;
    /* font-family: 'Baloo Tamma 2', cursive; */
}
#navbar::before{
    content: "";
    /* background-color: rgb(58, 221, 52); */
    background-color: black;
    position:absolute;
    height: 90%;
    top:0px;
    width: 100%;
    z-index: -1;
    opacity: 0.7;
}
#navbar ul li{
    list-style: none;
    font-size: 1.3rem;
    font-weight: bold;
}
#navbar ul li a{
    color: white;
    display: block;
    padding: 3px 10px;
    text-decoration: none;
    border-radius: 20px;
}
#navbar ul li a:hover{
    color: black;
    background-color: white;
}

/* ============home Section============ */
#home{
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    height: 633px;
    justify-content: center;
    align-items: center;
}

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

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

#home p{
    color: white;
    text-align: center;
    font-size:2rem;
    /* font-family: 'Bree Serif', serif; */
}
/* =============Utility classes============= */

.h-prime{
    font-size: 4rem;
    padding: 12px;
    /* font-family: 'Baloo Tamma 2', cursive; */
}
.h-primary{
    font-size: 3rem;
    padding: 12px;
    /* font-family: 'Baloo Tamma 2', cursive; */
}
.h-secondary{
    font-size: 2.3rem;
    padding: 12px;
}

.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: rgb(19 176 172);
    color: white;
    margin: 40px;
    font-size:1.5rem;
    border-radius: 10px;
    cursor: pointer;
}
.center{
    text-align: center;
}

/* =============SERVICES SECTION============= */
/* #services-container h1{
    margin-top: 50px;
} */
#services{
    margin: 34px;
    display:flex;
}
#services .box{
    border: 2px solid #2aa283;
    padding: 34px;
    margin: 3px 6px;
    border-radius: 28px;
    background: rgb(152 233 240 / 31%);
}
#services .box img{
    height: 150px;
    margin:auto;
    display: block;
    border-radius: 5px;
}


#services .box p{
    font-family: 'Bree Serif', serif;
}
 
/* =============Client Section============= */
#client-section{
    /* position: relative; */
    /* height: 400px; */
    margin-top: 100px;
    margin-bottom:130px;
}
#client-section::before{
    content: "";
    position: absolute;
    background: url('../img/bg/bg1.jpg') no-repeat center center/cover;
    width: 100%;
    height: 70%;
    flex-wrap: wrap;
    z-index: -1;
    opacity: 0.4;
    /* overflow-x: hidden; */
}
#clients{
    padding: 20px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.client-item{
    padding:45px;
}
#clients img{
    height: 230px;
}
/* ===========Contact Section=========== */
#contact{
    position: relative;
    margin-bottom: 50px;
    margin-top: 70px;
}
#contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
    /* background: pink; */
    background: url('../img/bg/bg6.jpg') no-repeat center center/cover;
}

#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;
    opacity: 0.5;
}

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

#contact-box label{
    font-size: 1.3rem;
    /* color: white; */
}

/* ==============Footer============== */
footer{
    /* display:flex; */
    background: rgb(75, 72, 72);
    /* background: rgb(247, 157, 157); */
    color: white;
    padding: 9px 20px;
    height: 70px;
    margin: 20px; 
    font-size: 1.3rem;
    /* margin-bottom: 20px;  */
    border-radius: 10px;
}
/* footer div{
    display:flex;
    justify-content: center;
    align-items: center;
    align-content: center;
} */