/* Common CSS */
body {
    font-family: 'Poppins', sans-serif;;
}

.orange-text {
    color: #E76F51;
}

.text-justify {
    text-align: justify;
}

.orange-btn {
    background-color: #E76F51;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
}

.orange-btn-outline {
    border: 1px solid #E76F51;
    color: #E76F51;
    padding: 15px 25px;
    border-radius: 5px;
}

.orange-btn:hover, .orange-btn-outline:hover {
    background-color: #db5635;
    color: white;
}

/* Header CSS  */
header {
    background-color: #264653;
}

/* Navbar CSS */
nav {
    margin-bottom: 80px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #FFFFFF;
    margin: 0px 20px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #E76F51;
}

/* Top Banner CSS */
.top-banner {
    background-image: url("../images/dotted.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: 16.5%;
    background-position-x: 97%;
}

.top-banner small, .top-banner .card-text {
    color: #b8b7b7;
}

/* Fetured Bikes CSS */
.fetured-bikes .upper-border {
    border-top: 1px solid #E76F51;
    width: 60px;
    margin: auto;
}

.bike-image {
    width: 288px;
    height: 243px;
    margin: auto;
}

.gray-img {
    filter: grayscale(100%);
}

/* Latest News Section CSS */
.latest-news .card {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

/* Clients Section CSS */
.client .card {
    border-radius: 5px;
}

.client .card-text {
    color: #6C6C6C;
}

.client-img {
    width: 149px;
    height: 149px;
}

.fa-star {
    color: #E77C40;
}

/* FAQ CSS */
.faq .accordion-button {
    font-size: 20px;
    font-weight: 500;
}

.faq .accordion-button:not(.collapsed) {
    color: #383838;
    background-color: white;
    box-shadow: none;
}

.faq .accordion-body {
    text-align: justify;
}

/* Newsletter CSS */
.newsletter .card {
    background-color: #264653;
}

.newsletter .silver-text {
    color: rgb(230, 228, 228);
}

.newsletter .form-control {
    display: block;
    width: 100%;
    padding: .75rem 1.25rem;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #696973;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d5d5dc;
    border-radius: .375rem;
    box-shadow: none;
}

.newsletter .orange-btn {
    color: #fff;
    background-color: #E76F51;
    border-color: #E76F51
}

.newsletter .orange-btn:hover {
    background-color: #db5635;
}

.newsletter .btn {
    display: inline-block;
    font-weight: 500;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: #E76F51;
    border: 1px solid transparent;
    padding: .75rem 1.75rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .375rem;
}

/* Footer CSS */
footer {
    background-color: #0B0D17;;
}

footer h6 {
    font-size: 18px;
}

/* Responsive CSS */
@media only screen and (max-width: 767px) {
    .download-btn-section {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 991px) {
    nav {
        margin-bottom: 0;
    }

    .top-banner {
        background-image: none;
    }
}