/* styles.css - IT Support Website Theme */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #b6892c;
    color: white;
    padding: 20px 0 8px;
    /*text-align: center;*/
}
nav.navbar.navbar-light.bg-light.navbar-expand-lg.fixed-top {
    background: #b6892c !important;
}
h1 {
        font-size: 2rem !important;
    }
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    /*justify-content: center;*/
    /*background: #003366;*/
}

nav ul li {
    margin: 5px 1% 0 0;
    border-radius: 5px;
    border: 1px solid #eee;
    transition:ease all 0.5s;
}

a.nav-link{
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.2px;
    padding: 3px 25px;
    display: inline-block;
}
ul.navbar-nav {
    /*width: 100%;*/
    float: right;
}
nav ul li {
    margin: 5px 6px 0 0;
    border-radius: 5px;
    border: 1px solid #eee;
    transition: easeall 0.5s;
    /* width: 100%; */
    float: right;
}
nav ul li:hover {
    background: #835904;
    color: #ffffff;
}
.mt-70{
    margin-top:70px;
}

section {
    padding: 25px;
    margin: 20px auto;
    width: 100%;
    background: white;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
}

form {
    display: flex;
    flex-direction: column;
    /*width: 50%;*/
    margin: auto;
}

form label, form input, form textarea, form button {
    margin-bottom: 10px;
}

button {
    background-color: #004080;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}


.submit-btn {
    background-color: #B6892C;
    color: #fff !important;
    padding: 8px 17px;
    font-size: 0.94rem;
    text-transform: uppercase;
    font-weight: 300;
    border-radius: 4px;
    transition: ease all 0.2s;
    margin-right:10px;
    border:1px solid #B6892C;
    width: 130px;
}
.submit-btn:hover{
    background-color: #dfb560;
    color: #fff;
}
.reset-btn{
    width: 130px;
     background-color: #fff;
    color: #fff;
    padding: 8px 17px;
    font-size: 0.94rem;
    text-transform: uppercase;
    font-weight: 300;
    border-radius: 4px;
    transition: ease all 0.2s;
    border:1px solid #B6892C ;
}
.reset-btn:hover{
    background-color: #dfb560;
    color: #fff;
}
footer {
    text-align: center;
    padding: 10px;
    background: #b7892c;
    color: white;
}

@media (max-width: 991px) {

    ul.navbar-nav {
        width: 100%;
    }
}