.car-brand-section {
    display: flex;
    padding: 20px 0;
    background-color: white;
    flex-wrap: wrap;
    justify-content: space-between;
}

.car-brand {
    text-align: center;
    margin-bottom: 10px;
}

.car-brand.full-width {
    width: 90%;
    text-align: center;
}

.car-brand.half-width {
    width: 49%;
}

.brand-logo {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.car-models {
    display: flex;
    flex-wrap: wrap;
    width: 99%;
    justify-content: space-between;
    margin-top: 10px;
}

.car-model  {
    width: 50%;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.car-model p{
    font-weight: bold;
}

.car-model img{
    width: 100%;
    transition: transform .2s;
}


.centered-car {
    display: flex;
    flex-direction: column;
    width: 100%;
}



.car-model img:hover{
-ms-transform: scale(1.04); /* IE 9 */
-webkit-transform: scale(1.04); /* Safari 3-8 */
transform: scale(1.04); 
}
@media screen and (max-width: 760px) {
    .car-brand.full-width,
    .car-brand.half-width {
        width: 100%;
    }

    .car-models {
        flex-direction: column;
        align-items: center;
    }

    .car-model {
        width: 100%;
        margin-bottom: 10px;
    }

    .centered-car {
        width: 100%;
        padding: 100px;
        text-align: center;
    }
}
