
   /* min-height:520px;
    overflow:hidden;
    padding-top:60px;
}*/

.heroWrapper{
    position:relative;
    min-height:460px;
}

/*.heroLeft h1{
    font-size:36px;
    text-align:center;
    margin-bottom:10px;
}*/

.heroLeft h1{
    font-size:36px;
    line-height:0.9;
    font-weight:800;
    color:#111;
}

.heroRight{
    position:absolute;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    opacity:.22;
    z-index:1;
}

.heroRight::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:
    radial-gradient(
        rgba(254,147,7,.15),
        transparent 70%
    );
    border-radius:50%;
    z-index:-1;
}
.heroCar{
    width:700px;
    max-width:100%;
}

.heroLeft{
    z-index:5;
}

.bookingCard{
    z-index:20;
}
.heroLeft h1{
    font-size:40px;
    line-height:1;
    white-space:nowrap;
    margin-bottom:15px;
}

.featuredCars,
.trustStrip,
.destinations{
    margin-top:180px;
}

.bookingCard{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:90px;

    width:95%;
    max-width:1350px;

    background:#fff;
    border-radius:32px;
    padding:35px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.12);

    z-index:10;
}

.heroTabs{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    padding:0;
    list-style:none;
}

.heroTabs li{
    padding:12px 24px;
    background:#f4f4f4;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
}

.heroTabs .active{
    background:#111;
    color:#fff;
}

.desktopBooking{
    display:grid;
    grid-template-columns:2fr 1.2fr 1.2fr 1.3fr;
    align-items:center;
    gap:0;

    border:1.5px solid #141414;
    border-radius:22px;
    overflow:hidden;
    background:#fff;
}
.desktopBooking{
    transition:.3s;
}

.desktopBooking:hover{
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.bookingItem{
    padding:18px 22px;
    position:relative;
}

.bookingItem:hover{
    background:#fafafa;
}
.bookingItem input,
.bookingItem select{
    cursor:pointer;
}
.bookingItem label{
    display:block;
    font-size:12px;
    color:#999;
    margin-bottom:8px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.bookingItem:not(:last-child)::after{
    content:"";
    position:absolute;
    top:20%;
    right:0;
    width:1px;
    height:60%;
    background:#E8E8E8;
}
.bookingItem input,
.bookingItem select{
    border:none;
    background:transparent;
    padding:0;
    font-size:17px;
    font-weight:600;
    color:#111;
    box-shadow:none;
}

.heroSearchBtn{
    margin:10px;
    border-radius:18px;
    height:64px;
    background:#FE9307;
    color:#fff;
    font-weight:700;
    border:none;
}

.mobileBooking{
    display:none;
}
.heroSearchBtn{
    transition:.3s;
}

.heroSearchBtn:hover{
    transform:translateY(-2px);
    box-shadow:
    0 15px 30px rgba(254,147,7,.35);
}

@media(max-width:768px){

.heroV2{
    background:#clear;
    min-height:380px;
    padding-top:20px;
    padding-bottom:30px;
    overflow:hidden;
}

.heroWrapper{
    position:relative;
    min-height:380px;
}

/* Hide desktop heading */
.heroLeft h1{
    display:none;
}

/* Car banner */
.heroRight{
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    text-align:center;
    height:auto;
    z-index:1;
}

.heroCar{
    width:260px;
    max-width:80%;
    opacity:.95;
}

/* Search card */
.bookingCard{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:30px;
    width:90%;
    z-index:5;
    padding:0;
    background:transparent;
    box-shadow:none;
}

.heroTabs{
    display:none;
}

.desktopBooking{
    display:none;
}

.mobileBooking{
    display:block;
}

.mobileSearchCard{
    background:#fff;
    border-radius:24px;
    padding:20px;
    box-shadow:
        0 15px 40px rgba(0,0,0,.30);

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.mobileSearchCard small{
    color:#999;
    font-size:12px;
}

.mobileSearchCard h4{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-top:4px;
}
}