@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "IBM Plex Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter Tight", sans-serif;
}

/* Global css */
.btn-yellow {
    background-color: #FFD600;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    color: #000;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;
}

.btn-yellow:hover {
    transform: scale(1.1);
    background-color: #FFf;
}


.btn-white {
    background-color: #FFf;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    color: #000;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;
}

.btn-white:hover {
    transform: scale(1.1);
    background-color: #FFD600;
}

.head-title {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dot.black {
    background: #000;
}

.dot.yellow {
    background: #F8B530;
}

.dot.green {
    background: #ACE7AF;
}

.dot.orange {
    background: #D57124;
}

.dot.red {
    background: #D71729;
}

.dot.grey {
    background: #999999;
}

.dot.hardblue {
    background: #002F4D;
}

.dot.pink {
    background: #FF8AC9;
}

.dot.hardpink {
    background: #EB8B94;
}

.dot.greyblue {
    background: linear-gradient(to top,
            #ccc 50%, #037abc 50%);
}

.dot.greyblack {
    background: linear-gradient(to top,
            #999 50%, #000 50%);
}

.dot.greygreen {
    background: linear-gradient(to top,
            #DDF2D8 50%, #224D19 50%);
}

.dot.greyyellow {
    background: linear-gradient(to top,
            #D2B48C 50%, #fff 50%);
}

/**** Top Head ********/
.top-head {
    text-align: center;
    background-color: #2077A8;
    padding: 10px;
    margin: 0;
}

.top-head p {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

/* Navbar */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #0056b3;
}

.navbar-nav .nav-link.active {
    color: red !important;
}

.navbar .form-control {
    min-width: 250px;
}

.navbar .login-cart {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .login-cart a {
    color: #FF0000;
    font-weight: 500;
    text-decoration: none;
}

.navbar .login-cart span {
    color: #0056b3;
}

a.navbar-brand img {
    height: 80px;
}

.navbar ul.navbar-nav li {
    padding: 0 7px;
}

.navbar-nav .nav-link span {
    color: #0E79B7;
}

.search-box .search-dropdown {
    border-radius: 8px;
}

.search-box {
    margin-right: 15px;
    margin-top: 10px;
}

.search-box i {
    color: #ff0000;
}

.search-box .btn:focus {
    box-shadow: none;
}

/* Home Banner */

.home-banner {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.home-banner .bg-video,
.home-banner .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: -1;
}


.home-banner .homebanner-content h1 {
    font-size: 82px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-banner .homebanner-content p {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.home-banner .banner-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.home-banner .banner-btn li {
    margin: 10px;
}

/* **We deals in** */

.we-deals .we-deals-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.we-deals .we-deals-content li img {
    width: 120px;
    height: 100px;
    object-fit: scale-down;
}

.we-deals .we-deals-content li {
    list-style: none;
}

.we-deals .we-deals-content {
    height: 100px;
    transition: all 0.5s ease-in-out;
}

/* **Our Cycles** */



.our-cycles .section-title h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}

.our-cycles .section-title h2 span {
    color: #FF0000;
}

.our-cycles a.btn-view-all {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.our-cycles .card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 12px;
}

.our-cycles .card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    min-height: 200px;
    object-fit: cover;
}

.our-cycles .card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    z-index: 1;
}

.our-cycles .card-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}

.our-cycles .card-box h2 {
    margin: 0px;
    font-size: 22px;
    font-weight: bold;
}

.our-cycles .btn-explore-now {
    display: inline-block;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.our-cycles .btn-explore-now:hover {
    color: #ff9900;
}

/* Carousel navigation */

.our-cycles .owl-nav.disabled {
    display: block;
}

.our-cycles .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.our-cycles .owl-nav button {
    position: absolute;
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease-in-out;
}

.our-cycles .owl-nav button:hover {
    background: #ff0000;
    color: #fff;
}

/* Left Arrow */
.our-cycles .owl-nav button.owl-prev {
    left: -60px;
    border: 1px solid #000;
    border-radius: 50px;
}

/* Right Arrow */
.our-cycles .owl-nav button.owl-next {
    right: -60px;
    border: 1px solid #000;
    border-radius: 50px;
}

.our-cycles .owl-nav i {
    font-size: 18px;
    line-height: 1;
}

.our-cycles .owl-carousel .item {
    transition: all 0.5s ease-in-out;
}

.our-cycles .owl-carousel .item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* All Bikes, All Styles, One Sale */
.all-bikes {
    background: url("../images/allbikes.png") no-repeat left center;
    background-size: cover;
    min-height: 700px;
    display: flex;
    /* align-items: center; */
}

.all-bikes .all-bikes-content {
    /* margin-left: auto; */
    max-width: 100%;
    text-align: center;
}

.all-bikes .all-bikes-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.all-bikes .all-bikes-content p {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Best Sellers */
.best-sellers h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.best-sellers h2 span {
    color: #FF0000;
}

.best-sellers .product-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    max-width: 320px;
    overflow: hidden;
    background: #fff;
    margin: auto;
    transition: all 0.5s ease-in-out;
}

.best-sellers .product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.best-sellers .product-card .product-img-wrap {
    padding: 50px 50px 10px;
    min-height: 200px;
}

.best-sellers .product-card .brand-badge {
    position: absolute;
    top: 10px;
    left: 10px;

}

.best-sellers .product-card .brand-badge img {
    height: 20px;
}

.best-sellers .product-card.product-img-wrap {
    position: relative;
    text-align: center;
    padding: 1rem;
}

.best-sellers .product-card .color-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.5rem 0;
}

.best-sellers .product-card .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #aaa;
}


.best-sellers .product-card .product-title {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.best-sellers .product-card .price {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF0000;
}

.best-sellers .product-card .old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: .4rem;
    font-size: 0.9rem;
}

.best-sellers .product-card .shop-btn {
    display: block;
    text-align: center;
    background: #f1ad2b;
    color: #000;
    padding: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.best-sellers .product-card:hover .shop-btn {
    background: #FF0000;
    color: #fff;
}

/* Carousel navigation */

.best-sellers .owl-nav.disabled {
    display: block;
}

.best-sellers .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.best-sellers .owl-nav button {
    position: absolute;
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease-in-out;
}

.best-sellers .owl-nav button:hover {
    background: #ff0000;
    color: #fff;
}

/* Left Arrow */
.best-sellers .owl-nav button.owl-prev {
    left: -60px;
    border: 1px solid #000;
    border-radius: 50px;
}

/* Right Arrow */
.best-sellers .owl-nav button.owl-next {
    right: -60px;
    border: 1px solid #000;
    border-radius: 50px;
}

.best-sellers .owl-nav i {
    font-size: 18px;
    line-height: 1;
}

.best-sellers .owl-carousel .item {
    transition: all 0.5s ease-in-out;
}

.best-sellers .owl-carousel .item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Your Trail Beast is Waiting ! */

.trail-beast .container {
    background: linear-gradient(to right, #F4FFBC, #E0FF3F);
    border-radius: 30px;
}

.trail-beast .banner-item {
    padding: 40px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trail-beast .banner-item img {
    max-width: 140px;
}

.trail-beast .banner-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.trail-beast .banner-text h2 span {
    color: #ff0000;
}

.trail-beast .banner-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #000;
}

.trail-beast .banner-img img {
    max-width: 500px;
    width: 100%;
}

/* Carousel navigation */
.trail-beast .owl-dots {
    position: absolute;
    bottom: 5px;
    left: 50px;
}

/* Your Ideal Bike Awaits */
.ideal-bike h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.ideal-bike h2 span {
    color: #FF0000;
}

.ideal-bike .product-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    max-width: 320px;
    overflow: hidden;
    background: #fff;
    margin: auto;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.ideal-bike .product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.ideal-bike .product-card .product-img-wrap {
    padding: 50px 50px 10px;
    min-height: 200px;
}

.ideal-bike .product-card .brand-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.ideal-bike .product-card .brand-badge img {
    height: 20px;
}

.ideal-bike .product-card.product-img-wrap {
    position: relative;
    text-align: center;
    padding: 1rem;
}

.ideal-bike .product-card .color-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.5rem 0;
}

.ideal-bike .product-card .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #aaa;
}

.ideal-bike .product-card .product-title {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.ideal-bike .product-card .price {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF0000;
}

.ideal-bike .product-card .old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: .4rem;
    font-size: 0.9rem;
}

.ideal-bike .product-card .shop-btn {
    display: block;
    text-align: center;
    background: #f1ad2b;
    color: #000;
    padding: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.ideal-bike .product-card:hover .shop-btn {
    background: #FF0000;
    color: #fff;
}

.ideal-bike .view-all {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #808080;
    text-decoration: none;
    padding-top: 23px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
}

/* Carousel navigation */

.ideal-bike .owl-nav.disabled {
    display: block;
}

.ideal-bike .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.ideal-bike .owl-nav button {
    position: absolute;
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease-in-out;
}

.ideal-bike .owl-nav button:hover {
    background: #ff0000;
    color: #fff;
}

/* Left Arrow */
.ideal-bike .owl-nav button.owl-prev {
    left: -60px;
    border: 1px solid #000;
    border-radius: 50px;
}

/* Right Arrow */
.ideal-bike .owl-nav button.owl-next {
    right: -60px;
    border: 1px solid #000;
    border-radius: 50px;
}

.ideal-bike .owl-nav i {
    font-size: 18px;
    line-height: 1;
}

.ideal-bike .owl-carousel .item {
    transition: all 0.5s ease-in-out;
}

.ideal-bike .owl-carousel .item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Bike Services  */

.bike-services .service-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 12px;
}

.bike-services .service-card img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    max-height: 500px;
    object-fit: cover;
}

.bike-services .service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}

.bike-services .service-box {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    padding: 0 75px;
}

.bike-services .service-box h3 {
    margin: 0px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.bike-services .service-box p {
    font-size: 16px;
    color: #fff;
}

/* Kids’ Bikes for Every Adventure */

/* .Kids-bikes {
    background-image: url(../images/kids-bikes.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
} */

.Kids-bikes {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.Kids-bikes .bg-video,
.Kids-bikes .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: -1;
}


.kids-bikes-content {
    max-width: 700px;
    margin: auto;
}

.Kids-bikes h2 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.Kids-bikes h2 span {
    color: #FF0000;
}

.Kids-bikes p {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.Kids-bikes .btn-white {
    max-width: fit-content;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

/* Testimonial Section */

.testimonials .section-title h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}

.testimonials .section-title h2 span {
    color: #FF0000;
}

.testimonials a.btn-view-all {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.testimonials .testimonial-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #f4f4f4;
    margin: 10px 0;
    min-height: 275px;
    transition: all 0.5s ease-in-out;
}

.testimonials .testimonial-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    background: #fff;
}

.testimonials .testimonial-item img {
    max-width: fit-content;
    margin-bottom: 20px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    color: #000;
    font-size: 16px;
    min-height: 80px;
}

.testimonials .testimonial-item h5 {
    font-weight: bold;
    font-size: 16px;
    color: #000;
}

.testimonials .testimonial-item:hover h5 {
    color: #FF0000;

}

.testimonials .testimonial-item .client-details {
    display: flex;
    align-items: center;
}

.testimonials .testimonial-item .client-details p {
    color: #000;
    font-size: 14px;
    min-height: 0px;
    margin-bottom: 7px;
}

/* Get in Touch */

.get-in-touch .container {
    background: linear-gradient(263.49deg, #FFE4E7 32.44%, #FF6E7C 105.16%);
    border-radius: 30px;
    padding: 30px;
    position: relative;
}

.get-in-touch .get-in-touch-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 30px;
}

.get-in-touch .get-in-touch-content h2 {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}

.get-in-touch .get-in-touch-content h2 span {
    color: #FF0000;
}

.get-in-touch .get-in-touch-content p {
    font-size: 16px;
    color: #000;
}

.get-in-touch .container img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 600px;
    z-index: 1;

}

/* Payments Delivery */
.payments-delivery figure {
    display: flex;
    align-items: center;
    max-width: clamp(150px, 30vw, 225px);
    gap: 10px;
}

.payments-delivery figure figcaption {
    margin: 0;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
}

/* **Subscribe Our Newsletter** */
.our-newsletter {
    background: url("../images/newsletter-bg.png") no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
    text-align: center;
    height: 400px;
    display: flex;
    align-items: center;
}

.our-newsletter h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.our-newsletter p {
    font-size: 16px;
    color: #fff;
}


.our-newsletter input[type="email"] {
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
}

.our-newsletter button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #FFD600;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    height: 50px;
}

/* Footer  */
.site-footer {
    background-color: #000;
}

.site-footer h6 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-logo {
    max-width: 150px;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer ul li {
    line-height: 2;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 16px;
    color: #fff;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-social a.facebook {
    background-color: #3b5998;
}

.footer-social a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-social a.tiktok {
    background-color: #fff;
    color: #000;
}

.site-footer p {
    margin: 0 0 8px;
    color: #bbb;
}

.site-footer .border-top {
    border-color: #333 !important;
}

/* About Us Page */


/* Inner Banner */

.inner-banner {
    background-image: url(../images/about.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.inner-banner .innerbanner-content h1 {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inner-banner .innerbanner-content p {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.inner-banner ol.breadcrumb {
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background-color: #FFD600;
    max-width: fit-content;
    width: 100%;
    padding: 10px 20px;
    border-radius: 50px;
}

.inner-banner li.breadcrumb-item a,
.inner-banner li.breadcrumb-item.active {
    color: #000;
    text-decoration: none;
}

.inner-banner ol.breadcrumb a {
    text-decoration: none;
    color: #000;
}

/* About Us */

.about-us h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-us h2 span {
    color: #FF0000;
}

/* Repair Services */

.repair-services {
    background-image: url(../images/repair-services.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.repair-services h2 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.repair-services h2 span {
    color: #FF0000;
}

.repair-services p {
    font-size: 16px;
    color: #fff;
    max-width: 900px;
    margin: auto;
    line-height: 1.5;
    font-weight: 400;
}

.repair-services .service-box .number {
    background: #FFD600;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    margin: 15px auto;
}

.repair-services .service-box h3 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    max-width: 175px;
    text-align: center;
    margin: 10px auto;
}

/* Counter */

.counter {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 20px;

}

.counter .counter-item {
    text-align: center;
}

.counter .counter-number {
    font-size: 72px;
    font-weight: bold;
    color: #000;
}

.counter .symbol {
    color: #FF0000;
}

.counter .counter-label {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #000;
}

/* Our Mission */

.our-mission .our-mission-row {
    display: flex;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.our-mission .our-mission-image,
.our-mission .our-mission-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.our-mission .our-mission-image img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 30px;
}

.our-mission .our-mission-content {
    background: linear-gradient(143.37deg, #F4FFBC 4.19%, #E0FF3F 106.81%);
    border: 1px solid #BDDD18;
    border-radius: 30px;
    padding: 20px 25px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-mission .our-mission-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.our-mission .our-mission-content h2 span {
    color: #FF0000;
}

.our-mission .our-mission-content p {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

.page-template-template-page-parts .card img {
    height: 260px;
    object-fit: cover;
}

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

    .our-cycles .owl-nav button.owl-prev,
    .best-sellers .owl-nav button.owl-prev,
    .ideal-bike .owl-nav button.owl-prev {
        left: 0px;
    }

    .our-cycles .owl-nav button.owl-next,
    .best-sellers .owl-nav button.owl-next,
    .ideal-bike .owl-nav button.owl-next {
        right: 0px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {

    .our-cycles .owl-nav button.owl-prev,
    .best-sellers .owl-nav button.owl-prev,
    .ideal-bike .owl-nav button.owl-prev {
        left: 0px;
    }

    .our-cycles .owl-nav button.owl-next,
    .best-sellers .owl-nav button.owl-next,
    .ideal-bike .owl-nav button.owl-next {
        right: 0px;
    }

    .get-in-touch .container img {
        width: 100%;
        max-width: 475px;
    }
}

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

    .our-cycles .owl-nav button.owl-prev,
    .best-sellers .owl-nav button.owl-prev,
    .ideal-bike .owl-nav button.owl-prev {
        left: 0px;
    }

    .our-cycles .owl-nav button.owl-next,
    .best-sellers .owl-nav button.owl-next,
    .ideal-bike .owl-nav button.owl-next {
        right: 0px;
    }

    .navbar-toggler {
        border-color: #fff;
        background-color: #FF0000;
        padding: 6px 10px;
        border-radius: 6px;
    }

    .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .get-in-touch .container img {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: auto;
        z-index: 1;
    }

    .we-deals .we-deals-content {
        height: auto;
    }

    .navbar-collapse {
        position: absolute;
        top: 90px;
        background: #fff;
        width: 100%;
        left: 0px;
        padding-left: 10px;
    }
}

@media screen and (max-width: 767px) {
    .home-banner .homebanner-content h1 {
        font-size: 52px;
    }

}

@media screen and (max-width: 479px) {
    .we-deals .we-deals-content li img {
        width: 100px;
        height: auto;
        object-fit: scale-down;
    }

    .home-banner .homebanner-content h1 {
        font-size: 42px;
    }

    .all-bikes .all-bikes-content h2,
    .trail-beast .banner-text h2,
    .Kids-bikes h2 {
        font-size: 38px;
    }

    .get-in-touch .get-in-touch-content h2 {
        font-size: 24px;
    }

    .get-in-touch .get-in-touch-content {
        padding: 20px;
    }

    .our-newsletter h2 {
        font-size: 18px;
    }
}