#nos_vehicules_container{
    width: 100%;
    margin-bottom: 50px;
    min-height: calc(100vh - 154px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nos_vehicules_bandeau{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    color: #fff;
    text-align: center;
    background-image: url("../img/background.jpg");
    background-position: center;
}

#nos_vehicules_bandeau_inner{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#nos_vehicules_bandeau_title{
    display: flex;
    align-items: center;
}

#nos_vehicules_bandeau_title h1{
    font-size: xxx-large;
}

#nos_vehicules_bandeau_inner p{
    font-size: larger;
}

#nos_vehicules_bandeau_title img{
    width: 300px;
    margin-right: 10px;
}

#nos_vehicules_announce_title{
    display: flex;
    justify-content: flex-start;
    width: 85%;
    max-width: 900px;
    min-width: 600px;
    margin-top: 50px;
}

#nos_vehicules_announce_title h2{
    margin-top: 0;
}

.car_cards_container{
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    width: 85%;
    max-width: 900px;
    min-width: 600px;
    margin-top: 20px;
}

.car_card{
    display: flex;
    width: 100%;
    background-color: var(--lightGrey);
    border-radius: 15px;
    box-shadow: 0 0 3rem #00010129;
    text-decoration: none;
    color: #000;
}

.car_card:hover{
    cursor: pointer;
    box-shadow: 0 0 3rem rgba(0, 1, 1, 0.27);
}

.car_card:hover .car_price{
    background-color: var(--accentColor);
}

.car_card:hover .car_price span{
    display: none;
}

.car_card:hover .car_price::after{
    background-color: var(--accentColor);
    content: "Plus d'informations...";
}

.car_picture{
    height: 200px;
    min-width: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px 0 0 15px;
    overflow-clip-margin: unset;
    overflow: hidden;
}

.car_text_container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding-top: 15px;
}

.car_text_container h3{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
    padding: 0 20px;
    margin-top: 0;
    font-size: 1.1em;
}

.car_features_container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    justify-content: space-between;
    padding: 0 20px;
}

.car_feature{
    display: flex;
    align-items: center;
}

.car_feature_text{
    padding-top: 4px;
    margin: 5px 0;
}

.car_feature_picto{
    width: 25px;
    margin-right: 5px;
}

.car_price{
    background-color: var(--midGrey);
    border-radius: 0 0 15px 0;
    margin: 15px 0 0;
    padding: 20px 10px;
    text-align: center;
    font-weight: bold;
    font-size: large;
    color: #fff;
}

#car_cards_container .car_picture_show_spinner_container{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px 0 0 15px;
    width: 300px;
    min-height: 200px;
}