.fourCar .car:hover .line:before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--color-red);
    position: absolute;
    bottom: -1px;
}

.fourCar .car img {
    transition: 0.5s;
    max-width: 100%;
}

.fourCar .car:hover img {
    transform: translate(-4px, 2px);
}

.fourCar .car:hover a {
    text-decoration: none;
}

@media(max-width:  768px){
    .fourCar .car img {
    padding: 0px;
    background-color: #F0F0F0;
    border-bottom: 1px solid #D3D3D3;
    }
}