/*
--------------------------------------------------
Responsive for Project Gallery
--------------------------------------------------
*/

    /* Show one images on devices between 0px and 528px wide */  
    @media screen and (min-width: 0px) and (max-width: 528px) {
       ul.progall li{
        width: 80%;
        float:none;
		margin-left:auto;
		margin-right:auto;
       }
    }

   /* Show three images on devices between 528px and 768px wide */  
    @media screen and (min-width: 528px) and (max-width: 768px) {
       ul.progall li{
        width: 33.333%;
        float:left;
       }
    }

    /* Show three images on devices between 1000px and 1300px wide */  
    @media screen and (min-width: 1000px) and (max-width: 1300px) {
       ul.progall li{
        width: 33.333%;
        float:left;
       }
    }

    /* Show four images on devices between 1300px and 1600pxwide */  
    @media screen and (min-width: 1300px) and (max-width: 1600px) {
       ul.progall li{
        width: 25%;
        float:left;
       }
    }

    /* Show five images on devices above 1600pxwide */  
    @media screen and (min-width: 1600px) {
       ul.progall li{
        width: 20%;
        float:left;
       }
	   }

/*
--------------------------------------------------
Team Page Responsive
--------------------------------------------------
*/
   /* Show three images on devices between 300px and 768px wide */  
    @media screen and (min-width: 300px) and (max-width: 768px) {
	   
       body.page-id-8 div.col-sm-7{position:relative;left:-15px;}
	   body.page-id-8 div#meetberkshire, body.page-id-8 div#meetbradley {width:100%!important;}
	   body.page-id-475 div#meetberkshire, body.page-id-475 div#meetbradley {width:100%!important;}
	   body.page-id-8 div#meetberkshire {margin-bottom:7.5px!important;}
	   body.page-id-8 div#meetbradley {margin-top:7.5px!important;}
	   body.page-id-475 div#meetberkshire {margin-bottom:7.5px!important;}
	   body.page-id-475 div#meetbradley {margin-top:7.5px!important;}
		
    }