*{
    
    font-family: 'Times New Roman', Times, serif;
    box-sizing: border-box;

}
/**navbar***/

#navbar
{
    position: fixed;
    z-index: 100;
    padding: .5rem 5rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, .5);
    background: black;
    opacity: 80%;
    width:100%;
}
.navbar .navbar-brand
{
    font-size: 20px;
    font-weight: 800;
    color: #833606;
}
#navbarSupportedContent a{
    color: #fff;
    border-bottom: 2px solid transparent;
    font-size: 20px;

}
#navbarSupportedContent a:hover{
    border-bottom: 2px solid #833606;
}
#navbarSupportedContent button{
    background: #833606;
    width: 10rem; 
    border-radius: 20px;
    color:#fff;
}
/***navbar***/

section{
    width: 100%;
    min-height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/***home***/
#home
{
background: url(dark.jpg);
background-position: center;
background-size: cover;
flex-direction: column;
}

#home h1{
    font-size: 50px;
    color: white;
    letter-spacing: 3px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    
}
#home p{
    font-size: 28px;
    color: #fff;
}
#home .input-group{
    width: 40%;
    height:45px;
    font-size: 50px;
}
.signin
{
    background-color: #924507;
    font-size: 20px;
    font-weight: 800;
    color: #fff;   
    box-shadow: 2px 4px 5px rgba(0,0,0,.3);
}



/***about****/

#about
{
background: linear-gradient(#9b673a,#7b4a14, #673601 100%);
}
#about h1{
    font-weight: 800;
    font-size: 50px;
    color: #ffffff;
}
#about p
{
font-size:15px ;
font-weight: 400;
color: #ffffff;
text-align: justify;

}

/***products****/

#product {
    background: #c5b6a9;
}

#product{
    font-size: 50px;
    letter-spacing: 2px;
    font-weight:800;
}

#product img{
    width: 200px;
    height: 200px;
}

.card{
    /* width: 250px; */
    background: #c5b6a9;
   
    box-shadow: 15px 20px 20px rgba(0,0,0,.3),
                 4px 4px 10px rgb(183, 159, 140);
 
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin: 20px;

    }
     .cardi4g :hover{
        box-shadow:  4px 4px 5px rgba(0,0,0,.3),
        -2px -2px 5px rgb(183, 159, 140);
    } 

   .cardimg{
    object-fit: cover;
    width:100%;
    height:30px;
    margin-top: 20px;
   }
/***contact***/


#contact img{
    height:100%;
}

.box{
    width: 80% ;
    text-align: center;
    align-items: center;

}

form{
display:flex;
flex-direction: column;
}

#contact input{

    margin: 10px 0px;

}

#contact text{
    margin: 10px 0px; 
    
}

#contact textarea{
    margin: 10px 0px;
}

footer{
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, .8);
    color:#fff;
    font-size: 20px;
    text-align: center;
    position: relative;
    padding: 10px;
}

/****mediaquwrries****/

@media screen and (max-width:767px){
    .navbar-brand
    {
    font-size: 17px !important;
    }
}