.homeGroup{}
.homeGroup-list{}
.homeGroup-item{float: left; width: calc((100% - 40px )/ 3); margin: 0 20px 20px 0;}

.homeGroup-img{border: 1px solid #d7d7d7; padding: 5px; margin: 0 0 5px; transition: all 0.25s ease 0s;}
.homeGroup-img-inner{overflow: hidden;}
.homeGroup-img img{display: block; max-width: 100%; transition: all 0.25s ease 0s;}
.homeGroup-name{font-family: Roboto-Regular; font-size: 15px; text-transform: uppercase; text-align: center; line-height: 20px; height: 40px; overflow: hidden;}
.homeGroup-name a{color: #333; transition: all 0.25s ease 0s;}

.homeGroup-item:hover .homeGroup-img{border: 1px solid #b91726;}
.homeGroup-item:hover .homeGroup-img img{transform: scale(1.025, 1.025);}
.homeGroup-item:hover .homeGroup-name a{color: #b91726;}

@media (min-width: 320px){
    .homeGroup-item{width: calc((100% - 20px )/ 2); margin: 0 20px 20px 0;}
    .homeGroup-item:nth-of-type(2n){margin-right: 0;}
}
@media (min-width: 480px){
    .homeGroup-item{width: calc((100% - 40px )/ 3); margin: 0 20px 20px 0;}
    .homeGroup-item:nth-of-type(2n){margin-right: 20px;}
    .homeGroup-item:nth-of-type(3n){margin-right: 0;}
}