#logo {
    margin: 15px 15px;
}
/* Navigation */
#navbar {
    flex-direction: column;
}
#navbar::before{
    height: 100%;
}
#navbar ul li {
    list-style: none;
    font-size: 1.1rem;
}
#navbar ul li a {
    color: white;
    display: block;
    padding: 0px 10px;
    border-radius: 20px;
    text-decoration: none;
}

#navbar ul li a:hover{
    color: black;
    background-color: white;
    font-size: 1rem;
}
/* Home section */
#home{
    height: 210px; 
    padding: 3px 28px;
    margin-top: 30px;
}
.btn{
    padding: 6px 20px;
    border: 2px solid black;
    background-color: blanchedalmond;
    font-family: 'Bree Serif', serif;
    margin: 7px;
    font-size: 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
}
.btn:hover {
    background-color: rgb(255, 220, 167);
    font-size: 1.002rem;
    box-shadow: 3px 5px 5px rgb(43, 43, 43);
}
#home::before{
    height: 600px; 
}
#home h1 {
    color: black;
    text-align: center;
    font-family: 'Bree Serif', serif;
    font-size: 1.5rem;
    margin-top: 60px;
}
#home p{
    font-size: 13px;
}
#branch-loc{
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Baloo Bhai', cursive;
    color: black;
    margin: 17px;
    cursor: pointer;
}
label{
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Baloo Bhai', cursive;
    color: black;
    margin: 1px;
    cursor: pointer;
}
label select{
    font-size: 0.78rem;
}

#branch-loc input{
    width: 11px;
    height: 11px;
    font-family: 'Bree Serif', serif;
}

/* Services section  */
.primary-center {
    font-family: 'Baloo Bhai', cursive;
    text-align: center;
    height: 10px;
    padding: 50px;
    margin-top: 55px;
}
#services{
    flex-direction: column;
}

#services .box { 
    padding: 14px;
    margin: 2px 0px; 
    margin-bottom: 20px;
}

/* Clients section */
#clients{
    flex-wrap: wrap;
}

#clients img{
    width: 66px;
    padding: 6px;
    height: auto;
}

/* Contact us section */
#contact-box form{
    width:80%;
}
/* Footer */

/* Utility classes */
.h-primary{
    font-size:26px;
}
.btn{
    font-size: 13px;
    padding: 4px 8px;
}