
/*  group */






.group {
	padding: 10px 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;
}


/* start of FSG Group logos */
 
.group .col-md-2 {
	width: 20%;
}

/* -Ipad - Desktop (above 1201px) - */
@media only screen and (min-width: 1201px)   {
    .group img {
        max-width: 100px;
    }}



/* -Ipad - Desktop (1050px - 1200) - */
@media only screen and (min-width: 1050px)  and (max-width: 1200px)  {
    .group img {
        max-width: 85px;
    }}

/* -Ipad - Desktop (768 - 1050px) - */
@media only screen and (min-width: 768px)  and (max-width: 1050px)  {
    
    
    .group img {
        max-width: 65px;
    }}
/* Ipad - Desktop (250 - 767px) */
@media only screen and (min-width: 250px)  and (max-width: 767px)  {



    .group img {
        max-width: 70px;
    }
}

