@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

	
body{
    overflow-x: hidden;
}





    .cases{
        width: 110%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: auto 0;
        overflow-x: hidden;
    }
    
    
    .case{
        width: 100vw;
        height: 60vh;
        display: block;
        float: left;
        clear: none;
        position: relative;
        text-align: left;
        color: #fff;
        background-size:auto 100%;
        background-position: center;
        margin: 0;
        transform-origin: center;
        transition: all .3s;
    }
    
    
    .case:hover{
        width: 100vw;
        background-size:auto 120%;
    }
    
    
    .case:hover + .case{
        width: 100vw;
    }
    
    
    .case:has(+ .case:hover){
        width: 100vw;
    }
    
    
    .case-inner{
       background: rgb(70,82,91);
        background: -webkit-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: -o-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(to top left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        width: calc(100% - 4em);
        height: calc(100% - 4em);
        padding: 2em;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .case-inner h1{
        font-weight: 100;
        opacity: .3;
        letter-spacing: -.05em;
        width: 100%;
    }
    
    
    .case-inner p{
        width: 100%;
        float: left;
        margin: 1em auto 2em;
        font-size: 0;
        transition: all .3s;
    }
    
    
    .case-inner h3{
        width: 80%;
        float: left;
        margin: .5em auto 0em;
    }
    
    
    .case button{
        display: none;
    }
    
    
    .case:hover .case-inner{
         background: rgb(70,82,91);
        background: -webkit-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: -o-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(to top left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
    } 
    
    .case:hover p{
        font-size: 1em;
    }
    
     .case:hover h1{
        opacity: 1;
    }
    
    .case:hover button{
        display: block;
    }
    
    
    
    
    
    
    
    
    
    .clientelle{
        width: 85%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: 25vh 7.5%;
    }
    
    
    .clientelle-list{
        width: 100%;
        height: 120vh;
        display: block;
        float: left;
        clear: none;
        border-radius: 1.5em;
        box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-webkit-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-moz-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
        background-color: white;
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr ; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". . "
    ". . "
    ". . "
    ". . "
    ". . "; 
        margin: 5vh auto;
        overflow: hidden;
    }
    
    
    
    .client{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
        background-size: 60%;
        background-position: center;
        background-repeat: no-repeat;
        border:0px solid rgba(224,224,224,1.00);
        transition: all .3s;
        border-radius: 1em;
    }
    
    
    .client:hover{
        border:1px solid rgba(224,224,224,1.00);
    }
    
    
    
    
    

    
    
    
    
    
    .workpage .blockdiv{
        margin-top: 0;
    }
    
    
    .workpage .blockdiv h2{
        font-size: 1.8em;
        line-height: 1.2em;
        margin-bottom: .5em;
    }
    
    
    
    .workpage .blockdiv p{
        width: 100%;
        margin: 0 auto 3em;
    }
    
    
    
    
    
    
    
    
    .workpics{
        width: 85%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: 10vh 7.5%;
    }
    
    
    .wp-inner{
        width: 100%;
        height: 80vh;
        float: left;
        clear: none;
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". ."
    ". ."; 
    
    }
    
    
    .wp-pic{
        width: 100%;
        display: block;
        float: left;
        clear: none;
        border-radius: .5em;
        cursor: pointer;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 120% auto;
        transition: all .3s;
    }
    
    
    .wp-inner a{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .wp-pic:hover{
        background-size: 130% auto;
    }
    
    
    .wp-pic:hover{
    box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    -webkit-box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    -moz-box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    }
    
    
    
    
    
    .office-pic iframe{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
    }
    
    
    











/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
	
	
	
	
	
	
    
    
    
    
    
    
    
    
    
	

	
	
	
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

    
    
    .cases{
        width: 110%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: auto 0;
        overflow-x: hidden;
    }
    
    
    .case{
        width: 25vw;
        height: 100vh;
        display: block;
        float: left;
        clear: none;
        position: relative;
        text-align: left;
        color: #fff;
        background-size:auto 100%;
        background-position: center;
        margin: 0;
        transform-origin: center;
        transition: all .3s;
    }
    
    
    .case:hover{
        width: 35vw;
        background-size:auto 120%;
    }
    
    
    .case:hover + .case{
        width: 20vw;
    }
    
    
    .case:has(+ .case:hover){
        width: 20vw;
    }
    
    
    .case-inner{
       background: rgb(70,82,91);
        background: -webkit-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: -o-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(to top left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        width: calc(100% - 6em);
        height: calc(100% - 6em);
        padding: 3em;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .case-inner h1{
        font-weight: 100;
        opacity: .3;
        letter-spacing: -.05em;
        width: 80%;
    }
    
    
    .case-inner p{
        width: 80%;
        float: left;
        margin: 1em auto 2em;
        font-size: 0;
        transition: all .3s;
    }
    
    
    .case-inner h3{
        width: 15vw;
        float: left;
        margin: 0em auto 0em;
    }
    
    
    .case button{
        display: none;
    }
    
    
    .case:hover .case-inner{
         background: rgb(70,82,91);
        background: -webkit-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: -o-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(to top left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
    } 
    
    .case:hover p{
        font-size: 1em;
    }
    
     .case:hover h1{
        opacity: 1;
    }
    
    .case:hover button{
        display: block;
    }
    
    
    
    
    
    
    
    
    
    .clientelle{
        width: 85%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: 25vh 7.5%;
    }
    
    
    .clientelle-list{
        width: 100%;
        height: 100vh;
        display: block;
        float: left;
        clear: none;
        border-radius: 1.5em;
        box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-webkit-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-moz-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
        background-color: white;
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr ; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". . ."
    ". . ."
    ". . ."; 
        margin: 5vh auto;
        overflow: hidden;
    }
    
    
    
    .client{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
        border:0px solid rgba(224,224,224,1.00);
        transition: all .3s;
        border-radius: 1em;
    }
    
    
    .client:hover{
        border:1px solid rgba(224,224,224,1.00);
    }
    
    
    
    
    

    
    
    
    
    
    .workpage .blockdiv{
        margin-top: 0;
    }
    
    
    .workpage .blockdiv h2{
        font-size: 4em;
    }
    
    
    
    .workpage .blockdiv p{
        width: 80%;
        margin: auto auto 1em;
    }
    
    
    
    
    
    
    
    
    .workpics{
        width: 85%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: 10vh 7.5%;
    }
    
    
    .wp-inner{
        width: 100%;
        height: 80vh;
        float: left;
        clear: none;
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    ". . ."
    ". . ."; 
    }
    
    
    .wp-pic{
        width: 100%;
        display: block;
        float: left;
        clear: none;
        border-radius: .5em;
        cursor: pointer;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 120% auto;
        transition: all .3s;
    }
    
    
    .wp-inner a{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .wp-pic:hover{
        background-size: 130% auto;
    }
    
    
    .wp-pic:hover{
    box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    -webkit-box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    -moz-box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    }
    
    
    
    
    
    .office-pic iframe{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
}
    /* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
	
    
    .cases{
        width: 110%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: auto 0;
        overflow-x: hidden;
    }
    
    
    .case{
        width: 25vw;
        height: 100vh;
        display: block;
        float: left;
        clear: none;
        position: relative;
        text-align: left;
        color: #fff;
        background-size:auto 100%;
        background-position: center;
        margin: 0;
        transform-origin: center;
        transition: all .3s;
    }
    
    
    .case:hover{
        width: 35vw;
        background-size:auto 120%;
    }
    
    
    .case:hover + .case{
        width: 20vw;
    }
    
    
    .case:has(+ .case:hover){
        width: 20vw;
    }
    
    
    .case-inner{
       background: rgb(70,82,91);
        background: -webkit-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: -o-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(to top left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        width: calc(100% - 6em);
        height: calc(100% - 6em);
        padding: 3em;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .case-inner h1{
        font-weight: 100;
        opacity: .3;
        letter-spacing: -.05em;
        width: 80%;
    }
    
    
    .case-inner p{
        width: 80%;
        float: left;
        margin: 1em auto 2em;
        font-size: 0;
        transition: all .3s;
    }
    
    
    .case-inner h3{
        width: 15vw;
        float: left;
        margin: 0em auto 0em;
    }
    
    
    .case button{
        display: none;
    }
    
    
    .case:hover .case-inner{
         background: rgb(70,82,91);
        background: -webkit-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: -o-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(to top left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
    } 
    
    .case:hover p{
        font-size: 1em;
    }
    
     .case:hover h1{
        opacity: 1;
    }
    
    .case:hover button{
        display: block;
    }
    
    
    
    
    
    
    
    
    
    .clientelle{
        width: 85%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: 25vh 7.5%;
    }
    
    
    .clientelle-list{
        width: 100%;
        height: 100vh;
        display: block;
        float: left;
        clear: none;
        border-radius: 1.5em;
        box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-webkit-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-moz-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
        background-color: white;
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". . . ."
    ". . . ."
    ". . . ."; 
        margin: 5vh auto;
        overflow: hidden;
    }
    
    
    
    .client{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
        background-size: 40%;
        background-position: center;
        background-repeat: no-repeat;
        border:0px solid rgba(224,224,224,1.00);
        transition: all .3s;
        border-radius: 1em;
    }
    
    
    .client:hover{
        border:1px solid rgba(224,224,224,1.00);
    }
    
    
    
    
    

    
    
    
    
    
    .workpage .blockdiv{
        margin-top: 0;
    }
    
    
    .workpage .blockdiv h2{
        font-size: 4em;
    }
    
    
    
    .workpage .blockdiv p{
        width: 80%;
        margin: auto auto 1em;
    }
    
    
    
    
    
    
    
    
    .workpics{
        width: 85%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: 10vh 7.5%;
    }
    
    
    .wp-inner{
        width: 100%;
        height: 80vh;
        float: left;
        clear: none;
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    ". . ."
    ". . ."; 
    }
    
    
    .wp-pic{
        width: 100%;
        display: block;
        float: left;
        clear: none;
        border-radius: .5em;
        cursor: pointer;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 120% auto;
        transition: all .3s;
    }
    
    
    .wp-inner a{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .wp-pic:hover{
        background-size: 130% auto;
    }
    
    
    .wp-pic:hover{
    box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    -webkit-box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    -moz-box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    }
    
    
    
    
    
    .office-pic iframe{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
    }
    
    
    
    
    
    
    
    
}
    
    
    /* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {

    
    
    .cases{
        width: 110%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: auto 0;
        overflow-x: hidden;
    }
    
    
    .case{
        width: 25vw;
        height: 100vh;
        display: block;
        float: left;
        clear: none;
        position: relative;
        text-align: left;
        color: #fff;
        background-size:auto 100%;
        background-position: center;
        margin: 0;
        transform-origin: center;
        transition: all .3s;
    }
    
    
    .case:hover{
        width: 35vw;
        background-size:auto 120%;
    }
    
    
    .case:hover + .case{
        width: 20vw;
    }
    
    
    .case:has(+ .case:hover){
        width: 20vw;
    }
    
    
    .case-inner{
       background: rgb(70,82,91);
        background: -webkit-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: -o-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(to top left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        width: calc(100% - 6em);
        height: calc(100% - 6em);
        padding: 3em;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .case-inner h1{
        font-weight: 100;
        opacity: .3;
        letter-spacing: -.05em;
        width: 80%;
    }
    
    
    .case-inner p{
        width: 80%;
        float: left;
        margin: 1em auto 2em;
        font-size: 0;
        transition: all .3s;
    }
    
    
    .case-inner h3{
        width: 15vw;
        float: left;
        margin: 0em auto 0em;
    }
    
    
    .case button{
        display: none;
    }
    
    
    .case:hover .case-inner{
         background: rgb(70,82,91);
        background: -webkit-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: -o-linear-gradient(bottom left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(to top left, rgba(0,0,0,.4) 0%, rgba(0,0,0,1) 100%);
    } 
    
    .case:hover p{
        font-size: 1em;
    }
    
     .case:hover h1{
        opacity: 1;
    }
    
    .case:hover button{
        display: block;
    }
    
    
    
    
    
    
    
    
    
    .clientelle{
        width: 85%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: 25vh 7.5%;
    }
    
    
    .clientelle-list{
        width: 100%;
        height: 100vh;
        display: block;
        float: left;
        clear: none;
        border-radius: 1.5em;
        box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-webkit-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-moz-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
        background-color: white;
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". . . ."
    ". . . ."
    ". . . ."; 
        margin: 5vh auto;
        overflow: hidden;
    }
    
    
    
    .client{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
        background-size: 40%;
        background-position: center;
        background-repeat: no-repeat;
        border:0px solid rgba(224,224,224,1.00);
        transition: all .3s;
        border-radius: 1em;
    }
    
    
    .client:hover{
        border:1px solid rgba(224,224,224,1.00);
    }
    
    
    
    
    

    
    
    
    
    
    .workpage .blockdiv{
        margin-top: 0;
    }
    
    
    .workpage .blockdiv h2{
        font-size: 4em;
    }
    
    
    
    .workpage .blockdiv p{
        width: 80%;
        margin: auto auto 1em;
    }
    
    
    
    
    
    
    
    
    .workpics{
        width: 85%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin: 10vh 7.5%;
    }
    
    
    .wp-inner{
        width: 100%;
        height: 80vh;
        float: left;
        clear: none;
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    ". . ."
    ". . ."; 
    }
    
    
    .wp-pic{
        width: 100%;
        display: block;
        float: left;
        clear: none;
        border-radius: .5em;
        cursor: pointer;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 120% auto;
        transition: all .3s;
    }
    
    
    .wp-inner a{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .wp-pic:hover{
        background-size: 130% auto;
    }
    
    
    .wp-pic:hover{
    box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    -webkit-box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    -moz-box-shadow: -3px 10px 25px 1px rgba(0,0,0,0.3);
    }
    
    
    
    
    
    .office-pic iframe{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
    }
    
    
    
    
    
    
    
    
}
    
        /* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
	
    
    
    
    
    
    .clientelle-list{
        width: 100%;
        height: 100vh;
        display: block;
        float: left;
        clear: none;
        border-radius: 1.5em;
        box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-webkit-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
-moz-box-shadow: -3px 10px 18px 1px rgba(0,0,0,0.05);
        background-color: white;
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". . . . ."
    ". . . . ."
    ". . . . ."; 
        margin: 5vh auto;
        overflow: hidden;
    }
    
    
    
    .client{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
        background-size: 40%;
        background-position: center;
        background-repeat: no-repeat;
        border:0px solid rgba(224,224,224,1.00);
        transition: all .3s;
        border-radius: 1em;
    }
    
    
    .client:hover{
        border:1px solid rgba(224,224,224,1.00);
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
    
}
            /* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
	

    

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
		
}