.buycar-div {
    
    gap: 30px;
    text-align: start;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
    width: 330px;
    background-color: rgb(255, 255, 255);
}

.buycar-div img {
    width: 310px;
}
.buycar-div h5{
    color: rgb(255, 217, 0);
    font-weight: bold;
}

.buycar-div div:nth-child(1) {
    text-align: end;
}

.buycar-div div:nth-child(2) div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.buycar-div div:nth-child(2) p:nth-child(5) {
    color: red;
}

ol li {
    padding: 5px;
}

.container h3 {
    color: rgb(94, 94, 94);
}

.buttt {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buttt button,
.buttt a,
.dealerForm a {
    background-color: black !important;
    border: none;
    padding: 15px;
    color: white !important;
    text-transform: uppercase;
    border-radius: 10px;
    text-align: center;
}

.buttt a {
    background-color: white !important;
    color: black !important;
    border: 1.5px solid black !important;
}

@media only screen and (max-width: 1000px) {

    .buycar-div {
        display: block;
        width: 100%;
    }

    .buycar-div div:nth-child(1) {
        margin-bottom: 20px;
    }

    .buttt {
        display: block;
    }

}