
  @import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@300&family=Jost:wght@500&family=Rubik:ital@1&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif !important;
}


/* ----top---banner-- */



.top-banner {
    background:linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.2)), url(../img/banner-3.jpg);
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* flex-direction: column; */
}

.info-box{
    /* top: -25%; */
    /* left: 55%; */
    /* position: relative; */
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 7px;

}
.info-box h6{
    font-size:20px;
}
.info-box h6 i{
    color: #EB3300;
}

.banner-form{
    /* top: 25%; */
    /* left: 30px; */
    /* position: relative; */
    max-width: 500px;
    background: rgba(0,0,0,0.3);
    padding: 30px;
    border-radius: 7px;
}

.banner-form h4{
        font-size:26px;
    color: #EB3300;
    /* color: #16e2f5; */
    /* color: #fff; */
    text-align: center;
    padding: 7px 0px;
}



.click-btn{
    border:1px solid #EB3300;
    text-transform: capitalize;
    font-weight: 600;
}

.click-btn:hover{
    border:1px solid #EB3300;
}



.Car{
    background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)), url(../img/inner-banner-img.png);
    width: 100%;
    height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.Car p{
    width: 700px;
}

/* ----Our Advantages---- */

.heading{
    text-align: center;
}

.heading h3{
    font-size: 24px;
    text-transform: capitalize;
}

.card-box{
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.card-box i{
    background: #EB3300;
    color: #fff;
    padding: 20px;
    border-radius: 2px;
}

.card-box h3{
    font-size: 18px;
    margin: 6px 0px;
    text-transform: capitalize;
}

.card-box p{
    text-transform: capitalize;
    font-size: 16px;
}

.card-box.active{
    border-radius: 0;
    background-color: #E8F1D4;
    border-bottom: 2px solid black;
}

/* ----part---- */

.car-parts h3{
    font-size: 17px;
}

.car-parts h2{
    color: #EB3300;
    font-size: 24px;
}

.car-parts p{
    font-size: 16px;
    letter-spacing: .2px;
}

.car-parts h6{
    font-size: 17px;
    font-weight: normal;
}

.part-image{
    width: 100%;
    overflow: hidden;
}

.part-image img{
    width: 100%;
    /* transition: .2s linear; */
    webkit-transform: rotate(15deg) scale(1.4);
	transform: rotate(15deg) scale(1.4);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.part-image:hover img{
    -webkit-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1);
}

