
.vehicle{
    margin: 20px 0;
}
@media(min-width:768px){
    .vehicle:nth-of-type(3n + 2){
        border-left: 2px solid #e1e1e1;
        border-right: 2px solid #e1e1e1;
    }
}

.img-text{
    padding: 30px 10px;
}
.img-text h3{
    text-transform: capitalize;
}
.img-text span{
    display: block;
    padding: 10px 0;
}
.img-text span i{
    font-weight: bold;
}
.image-container{
    position: relative;
    width: 100%;
    border-radius: 50%;
}
.img1 {
    width: 100%;
    height: auto;
}
.animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: .5s ease-out;
}
.image-container:hover .animation {
    transform: scale(1);
}
.img2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    height: auto;
}
.vehicles h2{
    margin-top: 50px;
}
