/* poppins google font  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');


:root{
    --header-bg:#264653;
    --footer-bg:#0B0D17;
    
}
body{
    font-family: 'Poppins', sans-serif;
}

/* preset some propertay and sizing */
.bike-title-header,
.latest-news-title h1,
.review-title h1,
.frquently-asked-title h1,
.honda-gellary-title h1,
.accessories-title h1{
    font-size: 48px;
    font-weight: 600;
}
.review-title h1 span,
.frquently-asked-title span,
.honda-gellary-title h1 span,
.accessories-title h1 span{
   color: #E76F51;
}
section{
    margin-top: 82px;
    margin-bottom: 80px;
}
section#welcome-section {
    margin-top: 10px;
}
a{
    text-decoration: none;
}
li{
    list-style:none;
}
.btn-honda{
    
    color: #fff;
    background-color: #E76F51;
    border-color: #E76F51;
    padding: 5px 27px;
}
/* ===========
header 
=============== */
#header{
    background: var(--header-bg);
    height: 670px;
}

/*=======================
 welcome section design  
====================*/
.honda-title{
    font-size: 48px;
}

/*====================
 fetured bike 
===================== */

.fetured-bike-header-box{
    position: relative;
}
.fetured-bike-header-box p:after{
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background: #ca1111;
    left: 50%;
    top: 96px;
    transform: translateX(-50%);
}
.image-grayscale img{
    filter: grayscale(100%);
}
.img-fluid-custom{
    width: 80%;
}




/* =======================
latest news 
==================== */

.card-image{
    padding: 1rem;
}
.card-title-custom{
    font-size: 28px;
    margin-top:10px;
    margin-bottom:10px ;
}
.card-text-custome{
    color:#6C6C6C;
    line-height: 32px;
    margin-bottom: 40px;

}

/* reviewre-image  */
.row.review-boxes {
    margin: 0px 5rem;
}
.reviewre-image{
    width: 150px;
    height: 150px;
    margin:0 auto;
}
.reviewre-image img{
    width: 100%;
    border-radius: 50%;
}
.card-body p,
h5,
a{
    margin-top:10px;
    margin-bottom: 10px;
    padding: 0 1rem;
}
.reviews-card-text{
    color:#6C6C6C;
}
.ratings li{
    padding:0px 3px;
}
.ratings li i{
 color:#E77C40;
}
.frequently-asked-image-wrapper img{
    width:450px;
}


/* footer  */
footer{
    background:var(--footer-bg);
}

.download-licence li,
.footer-manu li a{
 color:white;
 padding:0;
}
.fa-apple,
.fa-google-play{
    color:white;
    font-size: 2rem;
}

.honda-image-gellary-wrapper img{
    width: 100%;
 height: 100%;
}
.accessories-boxes h4{
    font-size:1.2rem;
    color:tomato
}



/* media queries  */
@media (max-width:600px) {
    .bike-title-header,
    .latest-news-title h1,
    .review-title h1,
    .frquently-asked-title h1,
    .honda-gellary-title h1,
    .accessories-title h1{
        font-size: 28px;
        font-weight: 600;
    }
    #header{
   
        height: 770px;
    }
    .honda-title{
        font-size: 2rem;;
    }
     .welcome-image{
         margin-top: 2rem;
     }
     .fetured-bike-header-box p:after{
        
        top: 82px;
       
    }
    .row.review-boxes {
        margin: 0px;
    }
    .honda-image-gellary-wrapper{
        display: grid;
        grid-template-columns: 1fr;
    }
    .honda-image-gellary-wrapper div{
        width: 100%;
    }
    .accessories-boxes{
        width: 50%;
    }
    .footer-manu{
        width: 100%;
        display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    }
    .footer-manu li{
        padding:5px 10px ;
    }
   

}