body {
    font-family:  monospace;
    font-size: 15px;
    line-height: 1.0;
    padding: 0;
    margin: 0;
    /* background-color: #f2fbf2; */
}

.container {
    width: 95%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #ffffff;
    padding-top: 10px;
    min-height: 70px;
    box-shadow: 0 0 3px #000;
}

header nav {
    float: right;
    margin-top: 15px;
}

header a {
    color:  #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight:  bold;
}

ul {
    margin: 0;
    padding: 0;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header nav a:hover {
    color: #00cc80;
}
.actived {
    color: #00cc80;
    border-bottom: #00cc80 3px solid;
}

/* About us */
/* #about_us {
    background-image: url("../src/asset/81744.jpg");
} */
#about_us #info {
    float: left;
    text-align: justify;
    width: 50%;
    padding-top: 130px;
}

#about_us #info p {
    line-height: 1.5;
    font-family:  monospace;
    padding-top: 20px;
}

#about_us #info-img {
    float: left;
    width: 50%;
    text-align:  center;
}

#about_us #info-img img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
}

/* Services */

#services .panel {
    float: left;
    width: 30%;
    padding: 0 10px 10px 10px;
    text-align: center;
}

/* Join us section */
#join_us {
    text-align: center;
    padding: .8em 1.2em;
    margin-top: 7%;
}

#join_us .btn-join {
    background: #00c2ff;
    width: 40%;
    display: block;
    color: #fff;
    border-radius: 15px;
    padding: .5em;
    text-decoration: none;
    font-size: 1.5em;
    margin: 3% auto 7%;
    position: relative;
    z-index: 4;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}


/* Join Us  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.forms {
    background: #fff;
    box-shadow: 0 0 3px #000;
    margin: 30px auto;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.forms h1 {
    padding: 0 0 20px 0;
    font-size: 26px;
    color: #666;
    font-weight: lighter;
    text-align: center;
}

.forms form {
    padding: 30px;
}
/* 
#signup {
    display: none;
} */

.forms .tab-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forms .tab-group:after {
    content: "";
    display: table;
    clear: both;
}

.forms .tab-group li a {
    display: block;
    text-decoration: none;
    padding: 15px;
    background: #e5e6e7;
    color: #888;
    font-size: 20px;
    float: left;
    width: 50%;
    text-align: center;
    border-top: 3px solid transparent;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.forms .tab-group li a:hover {
    background: #dedfdf;
    color: #666;
}

.forms .tab-group .active a {
    background: #fff;
    color: #444;
    border-top: 3px solid #00c2ff;
}
.tab-content {
    display: none;
}

.tab-content.is-active {
    display: block;
    padding: 20px;
}
.forms input {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 0;
    margin-bottom: 10px;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}   
.forms select {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 0;
    margin-bottom: 10px;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.forms select:focus {
    outline: 0;
    border-color: #00c2ff;
}
.forms input:focus {
    outline: 0;
    border-color: #00c2ff;
}

.forms label {
    font-size: 16px;
    font-weight: normal;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.forms .button {
    border: 0;
    outline: none;
    border-radius: 0;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #00c2ff;
    color: #ffffff;
    cursor: pointer;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.forms .button:hover,
.button:focus {
    background: #00c2ff;
}

.text-p {
    text-align: right;
}

.text-p a {
    color: #00c2ff;
    text-decoration:  none; 
}


/* This style onlt applicable for the home page  */

/* Search section  */
.forms-search {
    background: #fff;
    box-shadow: 0 0 3px #000;
    margin: 30px auto;
    max-width: 1000px;
    overflow: hidden;
    position: relative;
    padding: 0;
    display:  block;
    text-align:  center;
}

.forms-search h3 {
    text-align:  left;
    padding: 10px;
}

.forms-search form {
    padding: 10px;
    
}
.forms-search select {
    font-size: 16px;
    display: inline;
    padding: 10px 20px;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 0;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.forms-search input {
    font-size: 16px;
    display: inline;
    padding: 10px 20px;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 0;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.forms-search select:focus {
    outline: 0;
    border-color: #00c2ff;
}

.forms-search input:focus {
    outline: 0;
    border-color: #00c2ff;
}

.forms-search label {
    font-size: 16px;
    font-weight: normal;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.forms-search button {
    float: right;

}

.forms-search .button:hover,
.button:focus {
    background: #00c2ff;
}
/* End of section */

/* Home page  */
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}

.card {
    border: 1px solid #00c2ff;
    border-radius: .25rem;
    box-shadow: 0 0 3px #00c2ff;
}

.card :hover {
    cursor: pointer;
}

.content {
    padding: 15px;
    text-align:  center;
}
.content .head {
    display: inline;
}

.content h4{
    text-align:  left;
    align-content: center;
    display: inline;
    position: relative;
}
.content p{
    text-align:  left;
    align-content: center;
    display: inline;
    position: relative;
}

.bg-img {
    background-size: cover;
    min-height: 180px;
    background-position: center;
    box-shadow: 0 0 4px #00c2ff;
    border-bottom: #fff 2px solid;
}
.bg-img img {
    height: 180px;
    width: 100%;
}

button {
    background-color: #00c2ff;
    border: 1px solid #00c2ff;
    box-shadow: 0 0 3px #00c2ff;
    padding: .5rem 1rem;
    cursor: pointer;
    border-radius: .25rem;
    color: #ffffff;
    margin-top: 10px;
}

/* Model */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Style for single item pages */
section .card {
    border: 1px solid #00c2ff;
    border-radius: .25rem;
    width:  50%;
    text-align:  center;
    margin: 20px 20px 20px 250px;
    padding: 5px;
}

section .card .bg-img {
    background-size: cover;
    min-height: 180px;
    background-position: center;
}
section .card .content {
    padding: 15px;
}

hr {
    border: 1px solid #00c2ff;
}

.update-price {
    text-align:  center;
}

/* Post add car */
.forms-post {
    background: #fff;
    box-shadow: 0 0 3px #000;
    margin: 30px auto;
    max-width: 700px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.forms-post h2 {
    font-size: 26px;
    font-weight: bold;
    color: #00c2ff;
    text-align: center;
}

.forms-post form {
    padding: 20px;
    
}
.forms-post .input-field1 {
    float: left;
}
.forms-post .input-field2 {
    float: right;
}
.forms-post .input-field3 {
    float: left;
}

.forms-post input {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 0;
    margin-bottom: 10px;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -ms-transition: all 0.4s ease-in-out;
}
.forms-post textarea {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 0;
    margin-bottom: 10px;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -ms-transition: all 0.4s ease-in-out;
}

.forms-post select {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 0;
    margin-bottom: 10px;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.forms-post select:focus {
    outline: 0;
    border-color: #00c2ff;
}

.forms-post input:focus {
    outline: 0;
    border-color: #00c2ff;
}

.forms-post label {
    font-size: 16px;
    font-weight: normal;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.forms-post .button {
    border: 0;
    outline: none;
    border-radius: 0;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #00c2ff;
    color: #ffffff;
    cursor: pointer;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/* admin Dashboard */
.container .content-dash-admin {
    margin-top: 40px;
}

.container .content-dash .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}

.container .content-dash-admin .card {
    border: 1px solid #00c2ff;
    border-radius: .25rem;
}

.container .content-dash-admin .content-card {
    padding: 15px;
    text-align: center;
}

.container .content-dash-admin .card :hover {
    cursor: pointer;
}


.container .content-dash-admin .bg-img {
    background-size: cover;
    min-height: 180px;
    background-position: center;
}

.container .content-dash-admin button {
    background-color: #00c2ff;
    border: 1px solid #00c2ff;
    padding: .5rem 1rem;
    cursor: pointer;
    border-radius: .25rem;

}
/* Client Dashboard */
.side-bar {
    margin-left: -33px;
    margin-top: 1px;
    width: 200px;
    position: fixed;
    height: 100%;
    overflow: auto;
    border: 1px solid #fff;
    box-shadow: 0 0 2px ;
}

.side-bar a {
    display: block;
    padding: 16px;
    margin-top: 10px;
    text-decoration: none;
    color: #000;
}
.side-bar a:hover {
    color: #00cc80;
}
.side-bar .actived-one {
    color: #00cc80;
    border-left: #00cc80 3px solid;

}

.container .content-dash {
    margin-left: 200px;
    margin-top: 40px;
}

.container .content-dash .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}

.container .content-dash .card {
    border: 1px solid #00c2ff;
    border-radius: .25rem;
}

.container .content-dash .content-card {
    padding: 15px;
    text-align: center;
}

.container .content-dash .card :hover {
    cursor: pointer;
}


.container .content-dash .bg-img {
    background-size: cover;
    min-height: 180px;
    background-position: center;
}

.container .content-dash button {
    background-color: #00c2ff;
    border: 1px solid #00c2ff;
    padding: .5rem 1rem;
    cursor: pointer;
    border-radius: .25rem;

}



/* Footer style*/
.footer-container {
    width: 100%;
    background: #3D444A;
    color: #fff;
    padding: 3em 0;
}

.footer-container .container {
    text-align:  center;
    
}

.footer-container:before {
    width: 40px;
    height: 40px;
    background-color: #3D444A;
    position: absolute;
    left: 0;
}

.footer-container:after {
    width: 80px;
    position: absolute;
    left: 0;
}

ul.footer-links {
    margin: 0 auto;
}

ul.footer-links li {
    display: inline-block;
}

ul.footer-links li a {
    color: #9D9D9D;
    font-size: .8em;
}



/* Responsive Screen*/

@media only screen and (max-width: 650px) {
    header a img{
        float:  none;
        padding-left:
        text-d 
    }
    header li {
        padding: 0 0px 0 0px;
        text-align:  center;
    }
    .logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }

}

@media only screen and (min-width: 875px) {
    
}

@media only screen and (min-width: 1024px) {
    
}

@media only screen and (min-width: 1600px) {
    
}