
/*  Group */

.Group {
	padding: 30px 0;
	position: relative;
	z-index: 77;
	margin-top: 0px;
	width:100%;
}

.Group .container {
	padding: 0 0px;


}

.Group img {
	max-width: 95px;
	transition: all 0.3s ease 0s;
	opacity: 0.4;
	filter: grayscale(1);
}

.Group img:hover {
	transition: all 0.3s ease 0s;
	opacity: 1;
	filter: grayscale(0);
	cursor: pointer;
}

.Group .col-md-2 {
	width: 20%;
}

/* Ipad - Desktop (768 - 1050px) */
@media only screen and (min-width: 768px)  and (max-width: 1050px)  {

    .group .col-md-2 {
        width: 20%;
        float: left;
    }
    
    .group .col-md-2 img {
        width: 100%;
    }
    

}




/* Ipad - Desktop (250 - 767px) */
@media only screen and (min-width: 250px)  and (max-width: 767px)  {


    .group  {
        padding: 0px 20px 0px 20px;
    
    }
       
    
    .group .col-md-2 {
        width: 50%;
        float: left;
    }
    
    .group .col-md-2:last-child {
        width: 100%;
    }

    .Group img {
        max-width: 60px;
        transition: all 0.3s ease 0s;
        opacity: 0.4;
        filter: grayscale(1);
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
    }
}
