    @charset "utf-8";
    /* CSS Document */

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap');
    /*Start Reset CSS Code*/

    html,
    body,
    div,
    span,
    applet,
    object,
    iframe,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote,
    pre,
    a,
    abbr,
    acronym,
    address,
    big,
    cite,
    code,
    del,
    dfn,
    em,
    img,
    ins,
    kbd,
    q,
    s,
    samp,
    small,
    strike,
    strong,
    sub,
    sup,
    tt,
    var,
    b,
    u,
    i,
    center,
    dl,
    dt,
    dd,
    ol,
    ul,
    li,
    fieldset,
    form,
    label,
    legend,
    table,
    caption,
    tbody,
    tfoot,
    thead,
    tr,
    th,
    td,
    article,
    aside,
    canvas,
    details,
    embed,
    figure,
    figcaption,
    footer,
    header,
    hgroup,
    menu,
    nav,
    output,
    ruby,
    section,
    summary,
    time,
    mark,
    audio,
    video {
        margin: 0;
        padding: 0;
        border: 0;
        font-family: 'Muli', sans-serif;
        font-weight: normal;
        font-style: normal;
        vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */

    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    menu,
    nav,
    section {
        display: block;
    }

    body {
        line-height: 1;
        font-family: 'Muli', sans-serif;
        font-weight: normal;
        font-style: normal;
    }

    ol,
    ul {
        list-style: none;
    }

    blockquote,
    q {
        quotes: none;
    }

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
    }
    /*End Reset CSS Code*/
    /* ----------------------------------------------- Custom Checkbox ----------------------------------------------- */

    .custom-check {
        display: none;
    }

    .custom-check+label {
        color: #645f5f;
        font-size: 13px;
        position: relative;
        margin: 0;
        padding-left: 30px;
        font-weight: normal;
    }

    .custom-check+label:before {
        width: 20px;
        height: 20px;
        position: absolute;
        content: "";
        border: 2px solid #ddd;
        left: 0;
        top: -4px;
        transition: all 0.3s;
        background: #fff;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        cursor: pointer;
    }

    .custom-check:checked+label:before {
        background: #045fa9;
        border-color: #045fa9;
    }

    .custom-check+label:after {
        width: 12px;
        height: 7px;
        position: absolute;
        content: "";
        transition: all 0.3s;
        left: 4px;
        border: 2px solid transparent;
        transform: rotate(0deg);
        top: 0px;
    }

    .custom-check:checked+label:after {
        border-left-color: #fff;
        border-bottom-color: #fff;
        transform: rotate(-45deg);
    }
    /* ----------------------------------------------- Custom Check box ----------------------------------------------- */




    a,
    a:active,
    a:hover,
    a:visited {
        text-decoration: none;
        color: inherit;
    }

    .btn.focus,
    .btn:focus,
    .btn:hover {
        outline: none;
    }
    /* ------------------------------------------------ End Helper Classes ------------------------------------------------ */
    /* ---------------------- Global Classes ---------------------- */

header {
   /* width: 100%;
    height: 88px;
    position: fixed;
    z-index: 999;*/
    box-shadow: 0 0 10px 0 #00000017;
}
.header-inner {
    display: flex;
    align-items: center;
}
header .navbar {
    height: 88px;
    width: 100%;
    background: #7e0100;
}
.header-icons {
    background: #fff;
    height: 88px;
    width: 21%;
    display: flex;
    align-items: center;
}
.header-icons ul {
    margin: 0px;
    padding: 0px;
}
.header-icons ul li {
    list-style: none;
    display: inline-block;
    padding: 0 13px;
}
.header-icons ul li a {
    font-size: 20px;
    color: #000;
    display: inline-block;
}
.header-icons ul li a:hover {
    color:#7e0100;
}
.header-icons ul li:last-child {
    padding-right: 0;
}
header .navbar-nav {
    width:100%;
    justify-content: center;
}
header .navbar-expand-lg .navbar-nav .nav-link {
    padding: .5rem 2rem;
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
header .navbar-expand-lg .navbar-nav .nav-link:hover {
    color:#fff;
}
.banner {
    position: relative;
}
.banner img {
    width: 100%;
}
.banner-caption {
    width: 37%;
    position: absolute;
    left:4%;
    top: 30%;
}
.banner-caption h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 900;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px #585858;
}
.banner-caption h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px #585858;
}
.banner-caption h2 span {
    color: #fecb3c;
}
.banner-caption p {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    line-height:22px;
    margin: 0 0 40px 0;
    text-shadow: 2px 2px #585858;
}
.contact-btn {
    background: #7e0100;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    padding: 1rem 2rem 1.2rem;
    border: 0;
}
.contact-btn:hover, .contact-btn:focus {
    background: #8c0706;
    outline: none;
}
.about-us {
    text-align: center;
    padding: 2.5rem 0;
}
.about-us p {
    font-size: 16px;
    color: #252525;
    margin: 0px;
    line-height: 24px;
}
.main-heading {
    font-size: 36px;
    color: #222021;
    font-weight: 500;
    text-align: center;
    padding: 0 0 1rem 0;
    margin-bottom: 2.5rem;
    position: relative;
}
.main-heading::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 72px;
    height: 6px;
    background: #8c0706;
    margin: 0 0 0 -38px;
}
.featured-item {
    background: url(../images/featured-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 547px;
    display: flex;
    align-items: center;
    padding-right:50px;
}
.featured-item h1 {
    font-size: 40px;
    color: #fff;
    font-weight: 900;
    margin:10rem 0 0 0;
}
.featured-item h1 span {
    color: #fecb3c;
}

.featured-panel {
    background: #fff;
    text-align: center;
    padding-bottom: 2rem;
}
.featured-panel img {
    width:100%;
}
.featured-panel h2 {
    font-size: 22px;
    color: #7e0100;
    font-weight: normal;
    margin:12px 0 8px 0;
}
.featured-panel p {
    font-size: 14px;
    color: #000;
    font-weight: normal;
    margin:0 0 14px 0;
}
.featured-panel h3.price {
    font-size: 22px;
    color: #000;
    font-weight: 900;
    margin:0 0 8px 0;
}
 .owl-nav {
    text-align: center;
    margin-top: 45px;
}
.owl-nav .owl-prev {
    background-image:url(../images/pre.png) !important;
    background-repeat: no-repeat !important;
    width: 21px;
    height: 36px;
    position: absolute;
    top: 50%;
    left: -40px;
}
 .owl-nav .owl-next {
    background-image:url(../images/next.png) !important;
    background-repeat: no-repeat !important;
    width: 21px;
    height: 36px;
    position: absolute;
    top: 50%;
    right: -34px;
}
.owl-nav .owl-next:focus {
    outline: none;
}
.owl-nav .owl-prev:focus {
    outline: none;
}
 .owl-nav .owl-next span {
    display: none;
}
 .owl-nav .owl-prev span {
    display: none;
}
.services {
    background: #f5f1f0;
    padding: 3rem 0;
}
.services-item {
    background: #fff;
    border: solid 1px #e8e8e8;
    padding: 10px 10px 20px 10px;
    box-shadow: 0 0 10px 0 #00000017;
}
.services-item img {
    width:100%;
}
.services-item a.read-more {
    font-size: 14px;
    color: #7e0100;
    float: right;
}
.services-item a.read-more:hover {
    text-decoration: underline;
}
.services-item h2 {
    font-size: 20px;
    color: #7e0100;
    text-align: center;
    font-weight: normal;
    margin: 12px 0 8px 0;
}
.services-item p {
    font-size: 14px;
    color: #000;
    font-weight: normal;
    line-height: 22px;
    margin: 0 0 14px 0;
}
.testimonials {
    padding: 2.5rem 0;
}
.testimonials img {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    float: left;
    margin: 0 1rem 0 0;
    background: #fff;
    border: solid 1px #ddd;
    padding: 5px;
}
.testimonials p {
    font-size: 14px;
    color: #000;
    font-weight: normal;
    line-height: 22px;
    margin: 0 0 14px 0;
}
.bicycle-panel {
    padding: 2.5rem 0;
}
.bicycle-inner-panel {
    background:#f5f1f0;
    box-shadow: 0 0 10px 0 #00000017;
    padding-right: 14px;
}
.bicycle-inner-panel h2 {
    font-size: 20px;
    color: #7e0100;
    margin: 1rem 0;
}
.bicycle-inner-panel p {
    font-size: 15px;
    color: #222021;
    line-height: 22px;
    margin: 0 0 14px 0;
}
.bicycle-img img {
    width: 100%;
}
.red-btn {
    background: #7e0100;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    padding: .5rem 1.5rem .6rem 1.5rem;
    border: 0;
    border-radius: 0;
}
.red-btn:hover, .shop-btn:focus {
    background: #8c0706;
    color: #fff;
    outline: none;
}
.fitness-service {
    background: #f5f1f0;
    padding: 2rem 0;
}
.fitness-service h2 {
    font-size: 32px;
    color: #222021;
    margin: 0 0 20px 0;
    font-weight: 600;
}
.fitness-service p {
    font-size: 15px;
    color: #222021;
    line-height: 22px;
    margin: 0 0 20px 0;
}
.fitness-img img {
    width: 100%;
    box-shadow: 0 0 10px 0 #00000017;
}
.sign-up-panel {
    padding: 2.5rem 0;
}
.sign-up-panel p {
    font-size: 20px;
    color: #222021;
    margin: 0 0 3rem 0;
    text-align: center;
}
.sign-up-panel .form-group {
    width: 30%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.sign-up-panel .form-control {
    width:90%;
    border-radius:0;
    padding: 1.3rem 1rem;
}
.go-btn {
    background: #7e0100;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    padding:.3rem 1rem .4rem 1rem;
    border-radius:0;
}
.go-btn:hover {
    background:#8c0706;
    color: #fff;
}
.owl-carousel .owl-nav.disabled {
    display: block;
}
footer {
    background: #000000;
    padding: 2rem 0;
}
.footer-logo img {
    width:80%;
}
footer h1 {
    font-size: 21px;
    color: #fff;
    margin:0 0 1rem 0;
}
.footer-links ul {
    margin:0px;
    padding: 0px;
}
.footer-links ul li {
    list-style: none;
}
.footer-links ul li a {
    font-size: 14px;
    color: #bababa;
    padding: .4rem 0;
    display: inline-block;
}
.footer-links ul li a:hover {
    color: #da3130;
}
.footer-bottom {
    margin: 2rem 0 0 0;
    padding: 2rem 0 0 0;
    border-top: solid 1px #2b2b2b;
}
.footer-bottom p {
    font-size: 14px;
    color: #bababa;
    line-height: 24px;
    margin: 0 0 1rem 0;
}



    /* --------------  End Login Page -------- */

    .dropdown-toggle::after {
        position: absolute;
        top: 16px;
        color: #fff;
        right: 0;
      }
.dropdown-menu.show a{
  padding:10px;
}
.navbar-light .navbar-nav .nav-link:focus{
  color:#fff;
}
    /*Start Media Query --- Please put all respective media queries in bottom of this page*/

    @media only screen and (max-width:990px) {}
    /* Smaller than standard 960 (devices and browsers) */

    @media only screen and (min-width:768px) and (max-width:991px) {}
    /* Smaller than standard 768 (devices and browsers) */

    @media only screen and (min-width: 768px) {}
    /* Smaller than standard 480 (devices and browsers) */

    @media screen and (max-width: 480px) {

    }

    @media only screen and (max-width:1200px) {

    }
    /* Smaller than standard 767 (devices and browsers) */

    @media screen and (max-width: 767px) {
        .header-inner {
            display: inherit;
        }
        .header-icons {
            position: absolute;
            top: 0px;
            right: 0px;
            width: auto;
            height: 56px;
            padding-right: 10px;
        }
        .logo img {
            width: 50%;
        }
        header .navbar {
            height: auto;
        }
        .banner {
            padding-top: 112px;
        }
        .banner-caption {
            top: 42%;
            width: 52%;
        }
        .banner-caption h1 {
            font-size: 25px;
        }
        .banner-caption h2 {
            font-size: 14px;
        }
        .banner-caption p {
            font-size: 11px;
            display: none;
        }
        .featured-item {
            padding-right: 36px;
            padding-left: 30px;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .featured-item h1 {
            margin: 0 0 1rem 0;
        }
        .contact-btn {
            background: #7e0100;
            font-size: 15px;
            color: #fff;
            text-transform: uppercase;
            padding: .7rem .7rem .8rem .7rem;
            border: 0;

        }
        .owl-nav {
            margin-top: 0px;
        }
        .sign-up-panel .form-group {
            width:90%;
        }
        .main-heading {
            font-size: 26px;
        }
        .bicycle-inner-panel {
            margin-bottom: 20px;
        }
        .fitness-img {
            margin-top: 20px;
        }
        .navbar-light .navbar-toggler {
            color: #fff;
            border-color: #fff;
            background: #e4e4e4;
        }
        .logo {
            height: 56px;
            background: #fff;
        }
        .featured-item {
            height: auto;
        }
        .featured-item h1 {
            font-size: 32px;
        }
        .header-icons ul li a {
            font-size: 16px;
        }
        .header-icons ul li {
            padding: 0 14px;
        }
        .sign-up-panel p {
            padding: 0 10px;
            font-size: 16px;
            line-height: 22px;
        }
        .footer-logo {
            margin-bottom: 20px;
        }
}

    /* Smaller than standard 340 (devices and browsers) */

    @media only screen and (max-width: 340px) {}
    /* Smaller than standard 321 (devices and browsers) */

    @media only screen and (max-width: 321px) {}
    /*End Media Query*/

    