.newCarCard {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px 5px #eee;
    margin-bottom: 30px;
    background: white;
}

.newCarCard .imgContainer {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.newCarCard .imgContainer img {
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.newCarCard .imgContainer .price {
    background-color: #763C8B;
    font-size: 1rem;
    padding: 5px 10px 5px 5px;
    color: #fff;
    border-radius: 0 25px 25px 0;
    position: absolute;
    bottom: 0px;
    inset-inline-start: 0;
    transition: 0.3s all ease-in-out;
    left: 0;
    right: auto;
}

.newCarCard .imgContainer .priceCover {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #00000095;
    color: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s all ease-in-out;
}

.newCarCard:hover .imgContainer .priceCover {
    border-radius: 0%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.newCarCard .imgContainer .priceCover p {
    margin-bottom: 0;
}

.newCarCard .imgContainer .priceCover .num span {
    font-size: 1.8rem;
    font-weight: 500;
}

.newCarCard .imgContainer .priceCover .num sub {
    font-size: 0.8rem;
}

.newCarCard .imgContainer .priceCover .per {
    font-size: 1rem;
}

.newCarCard .imgContainer .price p {
    margin: 0;
    padding: 0 5px;
}

.newCarCard .imgContainer .price p.cur {
    text-align: end;
    font-size: 0.6rem;
    margin-bottom: -5px;
}

.newCarCard .imgContainer .price p.num {
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
}

.newCarCard .imgContainer .price p.car-offer-discount
{
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 2px;
    color: gold;
}

.newCarCard .imgContainer .price p.per {
    text-transform: capitalize;
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: -5px;
}

.newCarCard .imgContainer .busy {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    border-start-start-radius: 50px;
    border-end-start-radius: 50px;
    background-color: rgb(238, 35, 65);
    color: #fff;
    padding: 5px 10px;
    padding-inline-start: 10px;
    font-weight: 400;
}

.newCarCard .imgContainer .busy i {
    margin-inline-end: 5px;
}
.newCarCard .imgContainer .car_offer_discount {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 75px 100px;
    border-color: transparent transparent #cf0606 transparent;
}

.newCarCard .imgContainer .car_offer_discount_text {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 3rem;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #cf0606;
}

.newCarCard .imgContainer .car_offer_discount .car_offer_discount_text .percent {
    font-size: 1.5rem;
  }

  .newCarCard .imgContainer .car_offer_discount .car_offer_discount_text .off {
    font-size: 1rem;
  }

.newCarCard .imgContainer .dateTime {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 5px;
    inset-inline-start: 5px;
    font-size: 2rem;
    color: #763C8B;
}

.newCarCard .info {
    padding: 1rem;
    text-align: start;
}

.newCarCard .info .cardHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newCarCard .info .cardHeader a {
    font-weight: 700;
}

.newCarCard .info p {
    margin: 0;
    font-weight: 700;
}

.newCarCard .info p.booking {
    margin: 5px 0;
    font-weight: 200;
    color: #777;
}

.newCarCard .info .rating {
    text-align: center;
    margin-bottom: 5px;
    white-space: nowrap;
}

.newCarCard .info .bookCount {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.newCarCard .info .bookCount img.icon {
    width: 30px;
}

.newCarCard .info .bookCount p {
    margin-inline-end: 10px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    margin-inline-start: 10px;
}

.newCarCard .info .bookCount i {
    color: #763C8B;
}

.newCarCard .info .bookCount p::after {
    display: inline-block;
    content: ' ';
    width: 1px;
    height: 15px;
    margin-inline-start: 10px;
    background-color: #777;
}

.newCarCard .info .buttons a {
    width: 100%;
    border-radius: 50px;
    padding: 15px;
    margin-top: 15px;
}

@media (width <=800px) {

    .newCarCard .info .cardHeader {
        flex-direction: column;
        align-items: flex-start;
    }
}
