.home-cars-wrapper{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

@media screen and (min-width:768px){
    .home-cars-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}
 

@media screen and (min-width: 1280px){
    .home-cars-wrapper{
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-home-cars{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.item-home-cars:hover img{
    transform: scale(1.1);
    transition: transform 0.5s ease-in-out;
}

.item-home-cars h2{
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-size: 30px;
    line-height: 1.4em;
    letter-spacing: 1px;
    color: #FFFFFF;
    font-family: "Josefin Sans", Sans-serif;
    font-weight: 300;    
}

.power-bar-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;

}

.power-bar-wrapper > span{
    -webkit-text-size-adjust: 100%;
    font-size: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    box-sizing: border-box;
    color: #FFFFFF;
    font-family: "Josefin Sans", Sans-serif;
    font-weight: 300;
}

.power-bar-wrapper .power-bar{
    -webkit-text-size-adjust: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    box-sizing: border-box;
    position: relative;
    background-color: #eee;
    color: #fff;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    height: 30px;
    width: 100%;
}

.power-bar-wrapper .power-bar .progress{
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    font-size: 11px;
    height: 30px;
    line-height: 30px;
    border-radius: 2px;
    transition: width 1s ease-in-out;
    background-color: #fff;
}