/* CSS Reset */
*{
    margin: 0px;
    padding:0px;
}
/* CSS variables */


/* Navigation Bar */

#navbar{
    /* position: relative; */
    display: flex;
    align-items: center;
    font-family: 'Baloo Bhai 2', cursive;
}

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

}
/* Navigation image and logo */
#logo{
    margin: 10px 45px;
}
#logo img{
    margin: 10px 13px;
    height: 75px;
}

/* Navigation styling List */
#navbar ul{
    display: flex;
}
#navbar ul li{
    list-style: none;
    font-size: 1.5rem;
}
#navbar ul li a{
    display: block;
    color: white;
    text-decoration: none;
    padding:20px;
    border-radius: 15px;

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

/* Home Container */
#home{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:40px 200px;
    height:560px;

}
#home::before{
    content: "";
    background: url(../background_edu.jpg) center center/cover;
    position: absolute;
    top:0px;
    left:0px;
    height: 690px;
    width: 100%;
    opacity:0.85;
    z-index:-1;

}
#home h1{
    text-align: center;
    color:#2b8ee2
}
#home p{
    font-size: 1.9rem;
    text-align: center;
    font-family: 'Baloo Bhai 2', cursive;
    color:#ffffff;
}

/* Services Container */
 
#services{
    display: flex;
    margin:34px;
}
#services .box{
    border:3px solid rgb(92 157 201);
    margin:25px 6px;
    border-radius: 22px;
    background-color: #f5f1ed;
    padding:25px;
    
}
#services .box img{
    height:160px;
    margin:auto;
    display: block;
    border-radius: 28px;;
}
#services .box p{
    font-family: 'Bree Serif', serif;
    font-size: 22px;
}

/* Clients Container */
.client-container{
    height:396px;
    position: relative;
}
 .client-items img{
    height: 155px;
}
#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
 .client-items{
    margin: 12px;
    padding: 34px;
}
.client-container::before{
    content: "";
    background: url('../edu-bac2.jpg') center center/cover;
    position: absolute;
    height:400px;
    width: 100%;
    opacity: 0.4;
    z-index:-1
}


/* Contact Container */
#contact{
    position: relative;
    margin-top: 2px;
}
#contact::before{
    content: "";
    position: absolute;
    background: url('../contact-us-.webp') center center/cover;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: -1;
}
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom:14px;
}
#contact-box input,
#contact-box textarea
{
    width:100%;
    padding: 0.5rem;
    border-radius: 9px;
}
#contact-box form{
    width:40%;
}
#contact-box label{
    font-size: 1.2rem;
    font-family: 'Bree Serif', serif;
}
#contact-box button{
    width: 100%;
    background-color: silver;
}
footer{
    background-color: black;
    color: white;
    font-family: 'Baloo Bhai 2', cursive;
    padding: 4px 29px;
}

/* Utility classes */
.h-primary{
    font-size: 3.5rem;
    padding:20px;
    font-family: 'Bree Serif', serif;
}
.btn{
    margin:15px;
    padding: 12px 18px;
    font-size: 1.5rem;
    font-weight: bolder;
    border-radius: 15px;
    cursor: pointer;
    background-color: rgb(205 217 217);
    color: #33333c;
    border-color: #33333c;
}
.btn:hover{
    color: whitesmoke;
    background-color: rgb(27, 31, 34);
}
.h-secondary{
    font-size: 2.5rem;
    padding:20px;
    font-family: 'Bree Serif', serif;
}
.center{
    text-align: center;
}


