*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
}

.banner{
    width: 100%;
    height: 900px;
    background-size: cover;
    background-position: center;
}


/*navbar*/
.main-navbar{
    background-color: black;
    height: 105px;
}
.navbar{
    width: 85%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
}

.logo{
    width: 130px;
    cursor: pointer;
    border-radius: 0px;
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
.navbar ul li a{
    text-decoration: none;
    color: white;
    font-family: "Barlow Condensed",arial;
    font-size: 16px;
}
.navbar ul li::after{
    content:'';
    height: 3px;
    width: 0;
    background:red;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}
.navbar ul li:hover::after{
    width: 100%;
}
/*navbar end*/
/*nav*/

.nav{
    width: 100%; 
    padding: 10px;
    align-items: center;
    text-align: center;     
}
.nav ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
.nav ul li a{
    text-decoration: none;
    color: white;
    font-family: "Barlow Condensed",arial;
    font-size: 16px;
    
}
.nav ul li::after{
    content:'';
    height: 3px;
    width: 0;
    background: red;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}
.nav ul li:hover::after{
    width: 100%;
}
/*nav end*/
/*car details start*/
.main-h-info{
    background-color: #f4f4f4;
    font-family: Arial, Helvetica, sans-serif;
    height: 14%;
    position: sticky;
    top: 0px;
    z-index: 1;
}
.h-car-name{
    font-size: 27px;
    font-weight: 700;
}
.h-car-value{
    font-size: 23px;
    font-weight: 600;
   
}
.h-car-info{
    width: 31%;
    padding-right: 1%;
    line-height: 40px;
}
.h-info{
    width: 87%;
    margin: auto;
    padding: 1.3%; 
}
.lightgray{
    color: #8A8A8A;
}
.h-car-emi,.h-car-compare
{
    font-size: 7px;
}
.h-car-detail-1{
    font-size: 13px;
    color: #565655;
    width: 6%;
    line-height: 21px;
}
.h-car-detail-2{
    font-size: 13px;
    width: 31.7%;
    line-height: 21px;
}
.h-car-reserve{
    padding: 20px;
    border-radius: 12px;
    border: 1px  solid black;
    color: white;
    background-color:#08070f ;
    font-size: 15px;
    transition: all 0.7s;
    cursor:grab;
}
.h-car-emi{
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    line-height: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.h-car-compare{
    padding: 14px 12px 10.5px 12px ;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    line-height: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.h-car-cost{
    width: 16%;
}
.h-car-reserve:hover{
    padding: 20px;
    border-radius: 12px;
    border: 1px  solid black;
    color: black;
    background-color:#f4f4f4 ;
    font-size: 15px;
}
.cell{
    width: 55%;
    margin:3px;
    overflow:hidden;
    position: relative;
    z-index: -2;
   
}

.cell img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-car-summary{
    width: 70%;
    margin: auto;
}
.car-summary-title{
    font-size: 20px;
}
.car-summary-table{
    height: 550px;
    width: 100%;
}
.car-summary-01{
    
    width: 190px;
}

.car-summary-1{
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: first baseline;
    justify-content: space-between;
    align-items: first baseline;
    align-content: space-between;
    height: 470px;
}


.s-img{
    border: 1px solid #8a8a8a;
    height: 50px;
    width: 50px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 8px 6px;
    
}
.s-img img{
    width: 100%;
    object-fit: contain;
    
}
.ownership{
    width: 20%;
    text-align: left;
    
}
.info-car-sum{
    font-weight: 800;
    
}